Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
84eb8334
Commit
84eb8334
authored
Apr 19, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some missing import directives.
parent
ae7ae694
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
40 additions
and
0 deletions
+40
-0
avifil32.spec
dlls/avifil32/avifil32.spec
+2
-0
comdlg32.spec
dlls/commdlg/comdlg32.spec
+4
-0
ddraw.spec
dlls/ddraw/ddraw.spec
+1
-0
dplayx.spec
dlls/dplayx/dplayx.spec
+2
-0
msvfw32.spec
dlls/msvideo/msvfw32.spec
+2
-0
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+2
-0
olecli32.spec
dlls/olecli/olecli32.spec
+3
-0
shell32.spec
dlls/shell32/shell32.spec
+3
-0
urlmon.spec
dlls/urlmon/urlmon.spec
+2
-0
version.spec
dlls/version/version.spec
+1
-0
joystick.spec
dlls/winmm/joystick/joystick.spec
+2
-0
mcianim.spec
dlls/winmm/mcianim/mcianim.spec
+2
-0
mciavi.spec
dlls/winmm/mciavi/mciavi.spec
+2
-0
mcicda.spec
dlls/winmm/mcicda/mcicda.spec
+2
-0
mciseq.spec
dlls/winmm/mciseq/mciseq.spec
+2
-0
mciwave.spec
dlls/winmm/mciwave/mciwave.spec
+2
-0
midimap.spec
dlls/winmm/midimap/midimap.spec
+2
-0
msacm.spec
dlls/winmm/wavemap/msacm.spec
+2
-0
wineoss.spec
dlls/winmm/wineoss/wineoss.spec
+2
-0
No files found.
dlls/avifil32/avifil32.spec
View file @
84eb8334
name avifil32
type win32
import msvfw32.dll
@ stub AVIBuildFilter
@ stub AVIBuildFilterA
@ stub AVIBuildFilterW
...
...
dlls/commdlg/comdlg32.spec
View file @
84eb8334
...
...
@@ -3,6 +3,10 @@ type win32
init COMDLG32_DllEntryPoint
rsrc comdlg32
import shell32.dll
import comctl32.dll
import winspool.dll
0 stub ArrowBtnWndProc
1 stdcall ChooseColorA(ptr) ChooseColorA
2 stdcall ChooseColorW(ptr) ChooseColorW
...
...
dlls/ddraw/ddraw.spec
View file @
84eb8334
...
...
@@ -4,6 +4,7 @@ type win32
import kernel32.dll
import user32.dll
import ole32.dll
import x11drv.dll
@ stub DDHAL32_VidMemAlloc
@ stub DDHAL32_VidMemFree
...
...
dlls/dplayx/dplayx.spec
View file @
84eb8334
...
...
@@ -2,6 +2,8 @@ name dplayx
type win32
init DPLAYX_LibMain
import ole32.dll
1 stdcall DirectPlayCreate(ptr ptr ptr) DirectPlayCreate
2 stdcall DirectPlayEnumerateA(ptr ptr) DirectPlayEnumerateA
3 stdcall DirectPlayEnumerateW(ptr ptr) DirectPlayEnumerateW
...
...
dlls/msvideo/msvfw32.spec
View file @
84eb8334
name msvfw32
type win32
import winmm.dll
# Yes, ICCompress,ICDecompress,MCIWnd* and ICDraw* are cdecl (VFWAPIV).
# The rest is stdcall (VFWAPI) however. -Marcus Meissner, 990124
...
...
dlls/oleaut32/oleaut32.spec
View file @
84eb8334
name oleaut32
type win32
import ole32.dll
1 stub DllGetClassObject
2 stdcall SysAllocString(wstr) SysAllocString
3 stdcall SysReAllocString(ptr wstr) SysReAllocString
...
...
dlls/olecli/olecli32.spec
View file @
84eb8334
name olecli32
type win32
import ole32.dll
import olesvr32.dll
1 stub WEP
2 stub OleDelete
3 stdcall OleSaveToStream(ptr ptr) OleSaveToStream
...
...
dlls/shell32/shell32.spec
View file @
84eb8334
...
...
@@ -3,6 +3,9 @@ type win32
init Shell32LibMain
rsrc shell32
import ole32.dll
import comctl32.dll
# Functions exported by the Win95 shell32.dll
# (these need to have these exact ordinals, for some
# win95 and winNT dlls import shell32.dll by ordinal)
...
...
dlls/urlmon/urlmon.spec
View file @
84eb8334
name urlmon
type win32
import ole32.dll
1 stub CDLGetLongPathNameA
2 stub CDLGetLongPathNameW
@ stub AsyncGetClassBits
...
...
dlls/version/version.spec
View file @
84eb8334
...
...
@@ -2,6 +2,7 @@ name version
type win32
import kernel32.dll
import lz32.dll
@ stdcall GetFileVersionInfoA(str long long ptr) GetFileVersionInfoA
@ stdcall GetFileVersionInfoSizeA(str ptr) GetFileVersionInfoSizeA
...
...
dlls/winmm/joystick/joystick.spec
View file @
84eb8334
...
...
@@ -2,4 +2,6 @@ name joystick
file joystick.drv
type win32
import winmm.dll
1 stdcall DriverProc(long long long long long) JSTCK_DriverProc
dlls/winmm/mcianim/mcianim.spec
View file @
84eb8334
...
...
@@ -2,4 +2,6 @@ name mcianim
file mcianim.drv
type win32
import winmm.dll
1 stdcall DriverProc(long long long long long) MCIANIM_DriverProc
dlls/winmm/mciavi/mciavi.spec
View file @
84eb8334
...
...
@@ -2,4 +2,6 @@ name mciavi
file mciavi.drv
type win32
import winmm.dll
1 stdcall DriverProc(long long long long long) MCIAVI_DriverProc
dlls/winmm/mcicda/mcicda.spec
View file @
84eb8334
...
...
@@ -2,4 +2,6 @@ name mcicda
file mcicda.drv
type win32
import winmm.dll
1 stdcall DriverProc(long long long long long) MCICDA_DriverProc
dlls/winmm/mciseq/mciseq.spec
View file @
84eb8334
...
...
@@ -2,4 +2,6 @@ name mciseq
file mciseq.drv
type win32
import winmm.dll
1 stdcall DriverProc(long long long long long) MCIMIDI_DriverProc
dlls/winmm/mciwave/mciwave.spec
View file @
84eb8334
...
...
@@ -2,4 +2,6 @@ name mciwave
file mciwave.drv
type win32
import winmm.dll
1 stdcall DriverProc(long long long long long) MCIWAVE_DriverProc
dlls/winmm/midimap/midimap.spec
View file @
84eb8334
...
...
@@ -2,6 +2,8 @@ name midimap
file midimap.drv
type win32
import winmm.dll
1 stdcall DriverProc(long long long long long) MIDIMAP_DriverProc
2 stdcall midMessage(long long long long long) MIDIMAP_midMessage
3 stdcall modMessage(long long long long long) MIDIMAP_modMessage
dlls/winmm/wavemap/msacm.spec
View file @
84eb8334
...
...
@@ -2,6 +2,8 @@ name msacmmap
file msacm.drv
type win32
import winmm.dll
1 stdcall DriverProc(long long long long long) WAVEMAP_DriverProc
2 stdcall widMessage(long long long long long) WAVEMAP_widMessage
3 stdcall wodMessage(long long long long long) WAVEMAP_wodMessage
dlls/winmm/wineoss/wineoss.spec
View file @
84eb8334
...
...
@@ -2,6 +2,8 @@ name wineoss
file wineoss.drv
type win32
import winmm.dll
1 stdcall DriverProc(long long long long long) OSS_DriverProc
2 stdcall auxMessage(long long long long long) OSS_auxMessage
3 stdcall mixMessage(long long long long long) OSS_mixMessage
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment