kernel32: Add DequeueUmsCompletionListItems stub.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
bb4872bab0
commit
70c8126ffc
|
@ -377,7 +377,7 @@
|
||||||
@ stdcall -arch=x86_64 DeleteUmsThreadContext(ptr)
|
@ stdcall -arch=x86_64 DeleteUmsThreadContext(ptr)
|
||||||
@ stdcall DeleteVolumeMountPointA(str)
|
@ stdcall DeleteVolumeMountPointA(str)
|
||||||
@ stdcall DeleteVolumeMountPointW(wstr)
|
@ stdcall DeleteVolumeMountPointW(wstr)
|
||||||
# @ stub -arch=x86_64 DequeueUmsCompletionListItems
|
@ stdcall -arch=x86_64 DequeueUmsCompletionListItems(ptr long ptr)
|
||||||
@ stdcall DeviceIoControl(long long ptr long ptr long ptr ptr)
|
@ stdcall DeviceIoControl(long long ptr long ptr long ptr ptr)
|
||||||
@ stdcall DisableThreadLibraryCalls(long)
|
@ stdcall DisableThreadLibraryCalls(long)
|
||||||
@ stdcall DisconnectNamedPipe(long)
|
@ stdcall DisconnectNamedPipe(long)
|
||||||
|
|
|
@ -4272,6 +4272,16 @@ BOOL WINAPI DeleteUmsThreadContext(PUMS_CONTEXT ctx)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* DequeueUmsCompletionListItems (KERNEL32.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI DequeueUmsCompletionListItems(void *list, DWORD timeout, PUMS_CONTEXT *ctx)
|
||||||
|
{
|
||||||
|
FIXME( "%p,%08x,%p: stub\n", list, timeout, ctx );
|
||||||
|
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* BaseFlushAppcompatCache (KERNEL32.@)
|
* BaseFlushAppcompatCache (KERNEL32.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1916,6 +1916,7 @@ WINBASEAPI BOOL WINAPI DeleteUmsThreadContext(PUMS_CONTEXT);
|
||||||
WINBASEAPI BOOL WINAPI DeleteVolumeMountPointA(LPCSTR);
|
WINBASEAPI BOOL WINAPI DeleteVolumeMountPointA(LPCSTR);
|
||||||
WINBASEAPI BOOL WINAPI DeleteVolumeMountPointW(LPCWSTR);
|
WINBASEAPI BOOL WINAPI DeleteVolumeMountPointW(LPCWSTR);
|
||||||
#define DeleteVolumeMountPoint WINELIB_NAME_AW(DeleteVolumeMountPoint)
|
#define DeleteVolumeMountPoint WINELIB_NAME_AW(DeleteVolumeMountPoint)
|
||||||
|
WINBASEAPI BOOL WINAPI DequeueUmsCompletionListItems(void *, DWORD, PUMS_CONTEXT *);
|
||||||
WINADVAPI BOOL WINAPI DeregisterEventSource(HANDLE);
|
WINADVAPI BOOL WINAPI DeregisterEventSource(HANDLE);
|
||||||
WINADVAPI BOOL WINAPI DestroyPrivateObjectSecurity(PSECURITY_DESCRIPTOR*);
|
WINADVAPI BOOL WINAPI DestroyPrivateObjectSecurity(PSECURITY_DESCRIPTOR*);
|
||||||
WINBASEAPI BOOL WINAPI DeviceIoControl(HANDLE,DWORD,LPVOID,DWORD,LPVOID,DWORD,LPDWORD,LPOVERLAPPED);
|
WINBASEAPI BOOL WINAPI DeviceIoControl(HANDLE,DWORD,LPVOID,DWORD,LPVOID,DWORD,LPDWORD,LPOVERLAPPED);
|
||||||
|
|
Loading…
Reference in New Issue