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
b8684a26
Commit
b8684a26
authored
Jul 31, 1999
by
Patrik Stridvall
Committed by
Alexandre Julliard
Jul 31, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some of the issues reported by winapi-check.
parent
7b6e3c09
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
69 additions
and
56 deletions
+69
-56
comctl32.spec
dlls/comctl32/comctl32.spec
+1
-1
exception.c
dlls/ntdll/exception.c
+3
-1
file.c
dlls/ntdll/file.c
+6
-5
ntdll.spec
dlls/ntdll/ntdll.spec
+9
-9
rtl.c
dlls/ntdll/rtl.c
+2
-2
tapi32.spec
dlls/tapi32/tapi32.spec
+2
-2
builtin.c
if1632/builtin.c
+1
-1
gdi.spec
if1632/gdi.spec
+1
-1
mmsystem.spec
if1632/mmsystem.spec
+1
-1
user.spec
if1632/user.spec
+2
-2
multimedia.h
include/multimedia.h
+1
-1
ntddk.h
include/ntddk.h
+13
-1
olectl.h
include/olectl.h
+3
-3
winsock.h
include/winsock.h
+2
-2
network.c
misc/network.c
+0
-2
system.c
misc/system.c
+3
-3
winsock.c
misc/winsock.c
+6
-6
mmsystem.c
multimedia/mmsystem.c
+1
-1
olefont.c
ole/olefont.c
+1
-1
kernel32.spec
relay32/kernel32.spec
+1
-1
oleaut32.spec
relay32/oleaut32.spec
+3
-3
user32.spec
relay32/user32.spec
+4
-4
winmm.spec
relay32/winmm.spec
+3
-3
No files found.
dlls/comctl32/comctl32.spec
View file @
b8684a26
...
...
@@ -19,7 +19,7 @@ init COMCTL32_LibMain
11 stdcall DPA_Merge(ptr ptr long ptr ptr long) DPA_Merge
#12 stub Cctl1632_ThunkData32
13 stdcall MakeDragList(long) MakeDragList
14 stdcall LBItemFromPt(long long long) LBItemFromPt
14 stdcall LBItemFromPt(long long long
long
) LBItemFromPt
15 stdcall DrawInsert(long long long) DrawInsert
16 stdcall CreateUpDownControl(long long long long long long long long long long long long) CreateUpDownControl
17 stdcall InitCommonControls() InitCommonControls
...
...
dlls/ntdll/exception.c
View file @
b8684a26
...
...
@@ -337,9 +337,11 @@ void WINAPI REGS_FUNC(DebugBreak)( CONTEXT *context )
/***********************************************************************
* DebugBreak16 (KERNEL.203)
*/
void
WINAPI
DebugBreak16
(
CONTEXT
*
context
)
void
WINAPI
DebugBreak16
(
CONTEXT
86
*
context
)
{
#ifdef __i386__
REGS_FUNC
(
DebugBreak
)(
context
);
#endif
/* defined(__i386__) */
}
...
...
dlls/ntdll/file.c
View file @
b8684a26
...
...
@@ -150,12 +150,13 @@ NTSTATUS WINAPI NtFsControlFile(
*/
NTSTATUS
WINAPI
NtSetVolumeInformationFile
(
IN
HANDLE
FileHandle
,
IN
PVOID
VolumeInformationClass
,
PVOID
VolumeInformation
,
ULONG
Length
)
PIO_STATUS_BLOCK
IoStatusBlock
,
PVOID
FsInformation
,
ULONG
Length
,
FS_INFORMATION_CLASS
FsInformationClass
)
{
FIXME
(
"(0x%08x,%p,%p,0x%08lx) stub
\n
"
,
FileHandle
,
VolumeInformationClass
,
VolumeInformation
,
Length
);
FIXME
(
"(0x%08x,%p,%p,0x%08lx
,0x%08x
) stub
\n
"
,
FileHandle
,
IoStatusBlock
,
FsInformation
,
Length
,
FsInformationClass
);
return
0
;
}
...
...
dlls/ntdll/ntdll.spec
View file @
b8684a26
...
...
@@ -92,7 +92,7 @@ type win32
084 stub NtCreateSemaphore
085 stub NtCreateSymbolicLinkObject
086 stub NtCreateThread
087 stdcall NtCreateTimer(
long long
long) NtCreateTimer
087 stdcall NtCreateTimer(
ptr long ptr
long) NtCreateTimer
088 stub NtCreateToken
089 stdcall NtCurrentTeb() NtCurrentTeb
090 stub NtDelayExecution
...
...
@@ -164,7 +164,7 @@ type win32
156 stdcall NtQueryInformationToken (long long long long long) NtQueryInformationToken
157 stub NtQueryIntervalProfile
158 stub NtQueryIoCompletion
159 stdcall NtQueryKey (long long
long long
) NtQueryKey
159 stdcall NtQueryKey (long long
ptr long ptr
) NtQueryKey
160 stub NtQueryMutant
161 stdcall NtQueryObject(long long long long long) NtQueryObject
162 stdcall NtQueryPerformanceCounter (long long) NtQueryPerformanceCounter
...
...
@@ -226,10 +226,10 @@ type win32
218 stub NtSetSystemInformation
219 stub NtSetSystemPowerState
220 stub NtSetSystemTime
221 stdcall NtSetTimer(long
long long long long long
) NtSetTimer
221 stdcall NtSetTimer(long
ptr ptr ptr long long ptr
) NtSetTimer
222 stub NtSetTimerResolution
223 stdcall NtSetValueKey(long long long long long long) NtSetValueKey
224 stdcall NtSetVolumeInformationFile(long
long long
long long) NtSetVolumeInformationFile
224 stdcall NtSetVolumeInformationFile(long
ptr ptr
long long) NtSetVolumeInformationFile
225 stub NtShutdownSystem
226 stub NtStartProfile
227 stub NtStopProfile
...
...
@@ -314,7 +314,7 @@ type win32
306 stdcall RtlCreateAcl(ptr long long) RtlCreateAcl
307 stub RtlCreateAndSetSD
308 stdcall RtlCreateEnvironment(long long) RtlCreateEnvironment
309 stdcall RtlCreateHeap(long ptr long long ptr) RtlCreateHeap
309 stdcall RtlCreateHeap(long ptr long long ptr
ptr
) RtlCreateHeap
310 stub RtlCreateProcessParameters
311 stub RtlCreateQueryDebugBuffer
312 stub RtlCreateRegistryKey
...
...
@@ -376,7 +376,7 @@ type win32
368 stub RtlFindSetBits
369 stub RtlFindSetBitsAndClear
370 stdcall RtlFirstFreeAce(ptr ptr) RtlFirstFreeAce
371 stdcall RtlFormatCurrentUserKeyPath() RtlFormatCurrentUserKeyPath
371 stdcall RtlFormatCurrentUserKeyPath(
wstr
) RtlFormatCurrentUserKeyPath
372 stub RtlFormatMessage
373 stdcall RtlFreeAnsiString(long) RtlFreeAnsiString
374 stdcall RtlFreeHeap(long long long) RtlFreeHeap
...
...
@@ -594,7 +594,7 @@ type win32
586 stub ZwCreateSemaphore
587 stub ZwCreateSymbolicLinkObject
588 stub ZwCreateThread
589 stdcall ZwCreateTimer(
long long
long) NtCreateTimer
589 stdcall ZwCreateTimer(
ptr long ptr
long) NtCreateTimer
590 stub ZwCreateToken
591 stub ZwDelayExecution
592 stub ZwDeleteFile
...
...
@@ -727,10 +727,10 @@ type win32
719 stub ZwSetSystemInformation
720 stub ZwSetSystemPowerState
721 stub ZwSetSystemTime
722 stdcall ZwSetTimer(long
long long long long long
) NtSetTimer
722 stdcall ZwSetTimer(long
ptr ptr ptr long long ptr
) NtSetTimer
723 stub ZwSetTimerResolution
724 stdcall ZwSetValueKey(long long long long long long) NtSetValueKey
725 stdcall ZwSetVolumeInformationFile(long
long long
long long) NtSetVolumeInformationFile
725 stdcall ZwSetVolumeInformationFile(long
ptr ptr
long long) NtSetVolumeInformationFile
726 stub ZwShutdownSystem
727 stub ZwStartProfile
728 stub ZwStopProfile
...
...
dlls/ntdll/rtl.c
View file @
b8684a26
...
...
@@ -431,9 +431,9 @@ long long WINAPI RtlExtendedIntegerMultiply(
/******************************************************************************
* RtlFormatCurrentUserKeyPath [NTDLL.371]
*/
DWORD
WINAPI
RtlFormatCurrentUserKeyPath
(
DWORD
x
)
DWORD
WINAPI
RtlFormatCurrentUserKeyPath
(
PUNICODE_STRING
String
)
{
FIXME
(
"(
0x%08lx): stub
\n
"
,
x
);
FIXME
(
"(
%p): stub
\n
"
,
String
);
return
1
;
}
...
...
dlls/tapi32/tapi32.spec
View file @
b8684a26
...
...
@@ -71,7 +71,7 @@ type win32
63 stdcall lineSetCallPrivilege(long long) lineSetCallPrivilege
64 stdcall lineSetCurrentLocation(long long) lineSetCurrentLocation
65 stdcall lineSetDevConfig(long ptr long str) lineSetDevConfig
66 stdcall lineSetMediaControl(long long long long ptr) lineSetMediaControl
66 stdcall lineSetMediaControl(long long long long ptr
long ptr long ptr long ptr long
) lineSetMediaControl
67 stdcall lineSetMediaMode(long long) lineSetMediaMode
68 stdcall lineSetNumRings(long long long) lineSetNumRings
69 stdcall lineSetStatusMessages(long long long) lineSetStatusMessages
...
...
@@ -106,7 +106,7 @@ type win32
95 stdcall phoneGetStatusMessages(long ptr ptr ptr) phoneGetStatusMessages
96 stdcall phoneGetVolume(long long ptr) phoneGetVolume
97 stdcall phoneInitialize(ptr long ptr str ptr) phoneInitialize
98 stdcall phoneNegotiateAPIVersion(long long long long
long
ptr ptr)
98 stdcall phoneNegotiateAPIVersion(long long long long ptr ptr)
phoneNegotiateAPIVersion
99 stdcall phoneNegotiateExtVersion(long long long long long ptr)
phoneNegotiateExtVersion
...
...
if1632/builtin.c
View file @
b8684a26
...
...
@@ -322,7 +322,7 @@ LPCSTR BUILTIN_GetEntryPoint16( WORD cs, WORD ip, LPSTR name, WORD *pOrd )
*
* Default interrupt handler.
*/
void
BUILTIN_DefaultIntHandler
(
CONTEXT86
*
context
)
void
WINAPI
BUILTIN_DefaultIntHandler
(
CONTEXT86
*
context
)
{
WORD
ordinal
;
char
name
[
80
];
...
...
if1632/gdi.spec
View file @
b8684a26
...
...
@@ -261,7 +261,7 @@ file gdi.exe
379 pascal16 StartPage(word) StartPage16
380 pascal16 EndPage(word) EndPage16
381 pascal16 SetAbortProc(word segptr) SetAbortProc16
382 pascal16 AbortDoc() AbortDoc16
382 pascal16 AbortDoc(
word
) AbortDoc16
400 pascal16 FastWindowFrame(word ptr s_word s_word long) FastWindowFrame16
401 stub GDIMOVEBITMAP
403 stub GDIINIT2
...
...
if1632/mmsystem.spec
View file @
b8684a26
...
...
@@ -123,7 +123,7 @@ type win16
717 pascal mciGetCreatorTask(word) mciGetCreatorTask16
800 pascal mixerGetNumDevs() mixerGetNumDevs16
801 pascal mixerGetDevCaps(word ptr word) mixerGetDevCaps16
802 pascal mixerOpen(ptr word long long) mixerOpen16
802 pascal mixerOpen(ptr word long long
long
) mixerOpen16
803 pascal mixerClose(word) mixerClose16
804 pascal mixerMessage(word word long long) mixerMessage16
805 pascal mixerGetLineInfo(word ptr long) mixerGetLineInfo16
...
...
if1632/user.spec
View file @
b8684a26
...
...
@@ -454,7 +454,7 @@ file user.exe
506 pascal16 WNetCancelJob(ptr word) WNetCancelJob16
507 pascal16 WNetSetJobCopies(ptr word word) WNetSetJobCopies16
508 pascal16 WNetWatchQueue(word ptr ptr word) WNetWatchQueue16
509 pascal16 WNetUnwatchQueue(
word ptr ptr word
) WNetUnwatchQueue16
509 pascal16 WNetUnwatchQueue(
str
) WNetUnwatchQueue16
510 pascal16 WNetLockQueueData(ptr ptr ptr) WNetLockQueueData16
511 pascal16 WNetUnlockQueueData(ptr) WNetUnlockQueueData16
512 pascal16 WNetGetConnection(ptr ptr ptr) WNetGetConnection16
...
...
@@ -474,7 +474,7 @@ file user.exe
526 pascal16 WNetDisconnectDialog(word word) WNetDisconnectDialog16
527 pascal16 WNetConnectionDialog(word word) WNetConnectionDialog16
528 pascal16 WNetViewQueueDialog(word ptr) WNetViewQueueDialog16
529 pascal16 WNetPropertyDialog(word word
p
tr word) WNetPropertyDialog16
529 pascal16 WNetPropertyDialog(word word
word s
tr word) WNetPropertyDialog16
530 pascal16 WNetGetDirectoryType(ptr ptr) WNetGetDirectoryType16
531 pascal16 WNetDirectoryNotify(word ptr word) WNetDirectoryNotify16
532 pascal16 WNetGetPropertyText(word word str str word word) WNetGetPropertyText16
...
...
include/multimedia.h
View file @
b8684a26
...
...
@@ -147,7 +147,7 @@ void WINAPI mmTaskBlock16(HINSTANCE16 hInst);
LRESULT
WINAPI
mmTaskSignal16
(
HTASK16
ht
);
void
WINAPI
mmTaskYield16
(
void
);
void
CALLBACK
WINE_mmThreadEntryPoint
(
DWORD
_pmt
);
void
WINAPI
WINE_mmThreadEntryPoint
(
DWORD
_pmt
);
LRESULT
WINAPI
mmThreadCreate16
(
FARPROC16
fpThreadAddr
,
LPHANDLE
lpHndl
,
DWORD
dwPmt
,
DWORD
dwFlags
);
void
WINAPI
mmThreadSignal16
(
HANDLE16
hndl
);
void
WINAPI
mmThreadBlock16
(
HANDLE16
hndl
);
...
...
include/ntddk.h
View file @
b8684a26
...
...
@@ -104,6 +104,18 @@ typedef enum _FILE_INFORMATION_CLASS {
FileMaximumInformation
}
FILE_INFORMATION_CLASS
,
*
PFILE_INFORMATION_CLASS
;
typedef
enum
_FSINFOCLASS
{
FileFsVolumeInformation
=
1
,
FileFsLabelInformation
,
FileFsSizeInformation
,
FileFsDeviceInformation
,
FileFsAttributeInformation
,
FileFsControlInformation
,
FileFsFullSizeInformation
,
FileFsObjectIdInformation
,
FileFsMaximumInformation
}
FS_INFORMATION_CLASS
,
*
PFS_INFORMATION_CLASS
;
typedef
enum
_SECTION_INHERIT
{
ViewShare
=
1
,
...
...
@@ -589,7 +601,7 @@ DWORD WINAPI RtlNtStatusToDosError(DWORD error);
BOOLEAN
WINAPI
RtlGetNtProductType
(
LPDWORD
type
);
INT
WINAPI
RtlExtendedLargeIntegerDivide
(
LARGE_INTEGER
dividend
,
DWORD
divisor
,
LPDWORD
rest
);
long
long
WINAPI
RtlExtendedIntegerMultiply
(
LARGE_INTEGER
factor1
,
INT
factor2
);
DWORD
WINAPI
RtlFormatCurrentUserKeyPath
(
DWORD
x
);
DWORD
WINAPI
RtlFormatCurrentUserKeyPath
(
PUNICODE_STRING
String
);
DWORD
WINAPI
RtlOpenCurrentUser
(
DWORD
x1
,
DWORD
*
x2
);
BOOLEAN
WINAPI
RtlDosPathNameToNtPathName_U
(
LPWSTR
from
,
PUNICODE_STRING
us
,
DWORD
x2
,
DWORD
x3
);
DWORD
WINAPI
RtlCreateEnvironment
(
DWORD
x1
,
DWORD
x2
);
...
...
include/olectl.h
View file @
b8684a26
...
...
@@ -3,8 +3,6 @@
#include "windef.h"
#define WINOLECTLAPI INT WINAPI
#ifdef __cplusplus
#define DUMMY_UNION_NAME
#else
...
...
@@ -84,7 +82,9 @@ typedef struct tagFONTDESC {
#define FONTSIZE(n) { n##0000, 0 }
/* COREL MOD PQ mar 9 - redecl in mfc */
/*WINOLECTLAPI OleCreateFontIndirect(LPFONTDESC lpFontDesc, REFIID riid, VOID** ppvObj);*/
#if 0
WINAPI OleCreateFontIndirect(LPFONTDESC lpFontDesc, REFIID riid, VOID** ppvObj);
#endif
#define PICTYPE_UNINITIALIZED (-1)
#define PICTYPE_NONE 0
...
...
include/winsock.h
View file @
b8684a26
...
...
@@ -429,8 +429,8 @@ HANDLE WINAPI WSAAsyncGetHostByAddr(HWND hWnd, UINT uMsg, LPCSTR addr,
INT16
WINAPI
WSACancelAsyncRequest16
(
HANDLE16
hAsyncTaskHandle
);
INT
WINAPI
WSACancelAsyncRequest
(
HANDLE
hAsyncTaskHandle
);
INT16
WINAPI
WSAAsyncSelect16
(
SOCKET16
s
,
HWND16
hWnd
,
UINT16
wMsg
,
UINT
lEvent
);
INT
WINAPI
WSAAsyncSelect
(
SOCKET
s
,
HWND
hWnd
,
UINT
uMsg
,
UINT
lEvent
);
INT16
WINAPI
WSAAsyncSelect16
(
SOCKET16
s
,
HWND16
hWnd
,
UINT16
wMsg
,
LONG
lEvent
);
INT
WINAPI
WSAAsyncSelect
(
SOCKET
s
,
HWND
hWnd
,
UINT
uMsg
,
LONG
lEvent
);
/*
...
...
misc/network.c
View file @
b8684a26
...
...
@@ -824,7 +824,6 @@ DWORD WINAPI WNetCancelConnection2W(
*/
DWORD
WINAPI
WNetCancelConnectionA
(
LPCSTR
lpName
,
DWORD
dwFlags
,
BOOL
fForce
)
{
FIXME_
(
wnet
)(
": stub
\n
"
);
...
...
@@ -836,7 +835,6 @@ DWORD WINAPI WNetCancelConnectionA(
*/
DWORD
WINAPI
WNetCancelConnectionW
(
LPCWSTR
lpName
,
DWORD
dwFlags
,
BOOL
fForce
)
{
FIXME_
(
wnet
)(
": stub
\n
"
);
...
...
misc/system.c
View file @
b8684a26
...
...
@@ -157,7 +157,7 @@ void WINAPI DisableSystemTimers16(void)
/***********************************************************************
* Get80x87SaveSize16 (SYSTEM.7)
*/
WORD
Get80x87SaveSize16
(
void
)
WORD
WINAPI
Get80x87SaveSize16
(
void
)
{
return
94
;
}
...
...
@@ -166,7 +166,7 @@ WORD Get80x87SaveSize16(void)
/***********************************************************************
* Save80x87State16 (SYSTEM.8)
*/
void
Save80x87State16
(
char
*
ptr
)
void
WINAPI
Save80x87State16
(
char
*
ptr
)
{
#ifdef __i386__
__asm__
(
".byte 0x66; fsave %0; fwait"
:
"=m"
(
ptr
)
);
...
...
@@ -177,7 +177,7 @@ void Save80x87State16( char *ptr )
/***********************************************************************
* Restore80x87State16 (SYSTEM.9)
*/
void
Restore80x87State16
(
const
char
*
ptr
)
void
WINAPI
Restore80x87State16
(
const
char
*
ptr
)
{
#ifdef __i386__
__asm__
(
".byte 0x66; frstor %0"
:
:
"m"
(
ptr
)
);
...
...
misc/winsock.c
View file @
b8684a26
...
...
@@ -1241,12 +1241,12 @@ SEGPTR WINAPI WINSOCK_inet_ntoa16(struct in_addr in)
/***********************************************************************
* ioctlsocket() (WSOCK32.12)
*/
INT
WINAPI
WINSOCK_ioctlsocket
(
SOCKET
s
,
UINT
cmd
,
UINT
*
argp
)
INT
WINAPI
WINSOCK_ioctlsocket
(
SOCKET
s
,
LONG
cmd
,
ULONG
*
argp
)
{
ws_socket
*
pws
=
(
ws_socket
*
)
WS_HANDLE2PTR
(
s
);
LPWSINFO
pwsi
=
wsi_find
(
GetCurrentTask
());
TRACE
(
"(%08x): socket %04x, cmd %08x, ptr %8x
\n
"
,
TRACE
(
"(%08x): socket %04x, cmd %08
l
x, ptr %8x
\n
"
,
(
unsigned
)
pwsi
,
s
,
cmd
,
(
unsigned
)
argp
);
if
(
_check_ws
(
pwsi
,
pws
)
)
{
...
...
@@ -1279,7 +1279,7 @@ INT WINAPI WINSOCK_ioctlsocket(SOCKET s, UINT cmd, UINT *argp)
default:
/* Netscape tries hard to use bogus ioctl 0x667e */
WARN
(
"
\t
unknown WS_IOCTL cmd (%08x)
\n
"
,
cmd
);
WARN
(
"
\t
unknown WS_IOCTL cmd (%08
l
x)
\n
"
,
cmd
);
}
if
(
ioctl
(
pws
->
fd
,
newcmd
,
(
char
*
)
argp
)
==
0
)
return
0
;
SetLastError
((
errno
==
EBADF
)
?
WSAENOTSOCK
:
wsaErrno
());
...
...
@@ -1290,7 +1290,7 @@ INT WINAPI WINSOCK_ioctlsocket(SOCKET s, UINT cmd, UINT *argp)
/***********************************************************************
* ioctlsocket() (WINSOCK.12)
*/
INT16
WINAPI
WINSOCK_ioctlsocket16
(
SOCKET16
s
,
UINT
cmd
,
UINT
*
argp
)
INT16
WINAPI
WINSOCK_ioctlsocket16
(
SOCKET16
s
,
LONG
cmd
,
ULONG
*
argp
)
{
return
(
INT16
)
WINSOCK_ioctlsocket
(
s
,
cmd
,
argp
);
}
...
...
@@ -2284,7 +2284,7 @@ BOOL WINSOCK_HandleIO( int* max_fd, int num_pending,
return
(
num_posted
)
?
TRUE
:
FALSE
;
}
INT
WINAPI
WSAAsyncSelect
(
SOCKET
s
,
HWND
hWnd
,
UINT
uMsg
,
UINT
lEvent
)
INT
WINAPI
WSAAsyncSelect
(
SOCKET
s
,
HWND
hWnd
,
UINT
uMsg
,
LONG
lEvent
)
{
ws_socket
*
pws
=
(
ws_socket
*
)
WS_HANDLE2PTR
(
s
);
LPWSINFO
pwsi
=
wsi_find
(
GetCurrentTask
());
...
...
@@ -2361,7 +2361,7 @@ INT WINAPI WSAAsyncSelect(SOCKET s, HWND hWnd, UINT uMsg, UINT lEvent)
return
SOCKET_ERROR
;
}
INT16
WINAPI
WSAAsyncSelect16
(
SOCKET16
s
,
HWND16
hWnd
,
UINT16
wMsg
,
UINT
lEvent
)
INT16
WINAPI
WSAAsyncSelect16
(
SOCKET16
s
,
HWND16
hWnd
,
UINT16
wMsg
,
LONG
lEvent
)
{
return
(
INT16
)
WSAAsyncSelect
(
s
,
hWnd
,
wMsg
,
lEvent
);
}
...
...
multimedia/mmsystem.c
View file @
b8684a26
...
...
@@ -5026,7 +5026,7 @@ HANDLE16 WINAPI mmThreadGetTask16(HANDLE16 hndl)
/**************************************************************************
* mmThreadGetTask [internal]
*/
void
CALLBACK
WINE_mmThreadEntryPoint
(
DWORD
_pmt
)
void
WINAPI
WINE_mmThreadEntryPoint
(
DWORD
_pmt
)
{
HANDLE16
hndl
=
(
HANDLE16
)
_pmt
;
WINE_MMTHREAD
*
lpMMThd
=
(
WINE_MMTHREAD
*
)
PTR_SEG_OFF_TO_LIN
(
hndl
,
0
);
...
...
ole/olefont.c
View file @
b8684a26
...
...
@@ -226,7 +226,7 @@ static ICOM_VTABLE(IPersistStream) OLEFontImpl_IPersistStream_VTable =
/******************************************************************************
* OleCreateFontIndirect [OLEAUT32.420]
*/
WINOLECTL
API
OleCreateFontIndirect
(
INT
WIN
API
OleCreateFontIndirect
(
LPFONTDESC
lpFontDesc
,
REFIID
riid
,
VOID
**
ppvObj
)
...
...
relay32/kernel32.spec
View file @
b8684a26
...
...
@@ -373,7 +373,7 @@ import ntdll.dll
355 stdcall GetNumberFormatA(long long str ptr ptr long) GetNumberFormatA
356 stdcall GetNumberFormatW(long long wstr ptr ptr long) GetNumberFormatW
357 stdcall GetNumberOfConsoleInputEvents(long ptr) GetNumberOfConsoleInputEvents
358 stdcall GetNumberOfConsoleMouseButtons(
long
ptr) GetNumberOfConsoleMouseButtons
358 stdcall GetNumberOfConsoleMouseButtons(ptr) GetNumberOfConsoleMouseButtons
359 stdcall GetOEMCP() GetOEMCP
360 stub GetOverlappedResult
361 stdcall GetPriorityClass(long) GetPriorityClass
...
...
relay32/oleaut32.spec
View file @
b8684a26
...
...
@@ -12,9 +12,9 @@ type win32
9 stdcall VariantClear(ptr) VariantClear
10 stdcall VariantCopy(ptr ptr) VariantCopy
11 stdcall VariantCopyInd(ptr ptr) VariantCopyInd
12 stdcall VariantChangeType(ptr ptr) VariantChangeType
12 stdcall VariantChangeType(ptr ptr
long long
) VariantChangeType
13 stub VariantTimeToDosDateTime
14 stdcall DosDateTimeToVariantTime(long ptr) DosDateTimeToVariantTime
14 stdcall DosDateTimeToVariantTime(long
long
ptr) DosDateTimeToVariantTime
15 stdcall SafeArrayCreate(long long ptr) SafeArrayCreate
16 stdcall SafeArrayDestroy(ptr) SafeArrayDestroy
17 stdcall SafeArrayGetDim(ptr) SafeArrayGetDim
...
...
@@ -126,7 +126,7 @@ type win32
137 stub VarUI1FromDisp
138 stdcall VarUI1FromBool(long ptr) VarUI1FromBool
146 stub DispCallFunc
147 stdcall VariantChangeTypeEx(ptr ptr) VariantChangeTypeEx
147 stdcall VariantChangeTypeEx(ptr ptr
long long long
) VariantChangeTypeEx
148 stub SafeArrayPtrOfIndex
149 stdcall SysStringByteLen(ptr) SysStringByteLen
150 stdcall SysAllocStringByteLen(ptr long) SysAllocStringByteLen
...
...
relay32/user32.spec
View file @
b8684a26
...
...
@@ -227,7 +227,7 @@ init MAIN_UserInit
223 stdcall GetClipboardFormatNameA(long ptr long) GetClipboardFormatNameA
224 stdcall GetClipboardFormatNameW(long ptr long) GetClipboardFormatNameW
225 stdcall GetClipboardOwner() GetClipboardOwner
226 stdcall GetClipboardViewer(
long
) GetClipboardViewer
226 stdcall GetClipboardViewer() GetClipboardViewer
227 stdcall GetCursor() GetCursor
228 stub GetCursorInfo
229 stdcall GetCursorPos(ptr) GetCursorPos
...
...
@@ -458,8 +458,8 @@ init MAIN_UserInit
454 stdcall SendMessageA(long long long long) SendMessageA
455 stdcall SendMessageCallbackA(long long long long ptr long) SendMessageCallbackA
456 stdcall SendMessageCallbackW(long long long long ptr long) SendMessageCallbackW
457 stdcall SendMessageTimeoutA(long long long long
ptr
ptr) SendMessageTimeoutA
458 stdcall SendMessageTimeoutW(long long long long
ptr
ptr) SendMessageTimeoutW
457 stdcall SendMessageTimeoutA(long long long long
long long
ptr) SendMessageTimeoutA
458 stdcall SendMessageTimeoutW(long long long long
long long
ptr) SendMessageTimeoutW
459 stdcall SendMessageW(long long long long) SendMessageW
460 stdcall SendNotifyMessageA(long long long long) SendNotifyMessageA
461 stdcall SendNotifyMessageW(long long long long) SendNotifyMessageW
...
...
@@ -529,7 +529,7 @@ init MAIN_UserInit
525 stdcall SetWindowsHookA(long ptr) SetWindowsHookA
526 stdcall SetWindowsHookExA(long long long long) SetWindowsHookExA
527 stdcall SetWindowsHookExW(long long long long) SetWindowsHookExW
528 stdcall SetWindowsHookW(long
long long long
) SetWindowsHookW
528 stdcall SetWindowsHookW(long
ptr
) SetWindowsHookW
529 stdcall ShowCaret(long) ShowCaret
530 stdcall ShowCursor(long) ShowCursor
531 stdcall ShowOwnedPopups(long long) ShowOwnedPopups
...
...
relay32/winmm.spec
View file @
b8684a26
...
...
@@ -55,7 +55,7 @@ init WINMM_LibMain
51 stdcall mciSendStringA(str ptr long long) mciSendStringA
52 stdcall mciSendStringW(str ptr long long) mciSendStringW
53 stdcall mciSetDriverData(long long) mciSetDriverData
54 stdcall mciSetYieldProc(
ptr
) mciSetYieldProc
54 stdcall mciSetYieldProc(
long ptr long
) mciSetYieldProc
55 stub midiConnect
56 stub midiDisconnect
57 stdcall midiInAddBuffer(long ptr long) midiInAddBuffer
...
...
@@ -64,7 +64,7 @@ init WINMM_LibMain
60 stdcall midiInGetDevCapsW(long ptr long) midiInGetDevCapsW
61 stdcall midiInGetErrorTextA(long ptr long) midiInGetErrorTextA
62 stdcall midiInGetErrorTextW(long ptr long) midiInGetErrorTextW
63 stdcall midiInGetID(long) midiInGetID
63 stdcall midiInGetID(long
ptr
) midiInGetID
64 stdcall midiInGetNumDevs() midiInGetNumDevs
65 stdcall midiInMessage(long long long long) midiInMessage
66 stdcall midiInOpen(ptr long long long long) midiInOpen
...
...
@@ -80,7 +80,7 @@ init WINMM_LibMain
76 stdcall midiOutGetDevCapsW(long ptr long) midiOutGetDevCapsW
77 stdcall midiOutGetErrorTextA(long ptr long) midiOutGetErrorTextA
78 stdcall midiOutGetErrorTextW(long ptr long) midiOutGetErrorTextW
79 stdcall midiOutGetID(long) midiOutGetID
79 stdcall midiOutGetID(long
ptr
) midiOutGetID
80 stdcall midiOutGetNumDevs() midiOutGetNumDevs
81 stdcall midiOutGetVolume(long ptr) midiOutGetVolume
82 stdcall midiOutLongMsg(long ptr long) midiOutLongMsg
...
...
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