Stub for CloseProfileUserMapping.
This commit is contained in:
parent
176f80fa0d
commit
9b4fcf721d
|
@ -12,6 +12,7 @@
|
|||
#include <sys/stat.h>
|
||||
|
||||
#include "winbase.h"
|
||||
#include "winerror.h"
|
||||
#include "wine/winbase16.h"
|
||||
#include "winuser.h"
|
||||
#include "winnls.h"
|
||||
|
@ -1555,3 +1556,12 @@ void WINAPI WriteOutProfiles16(void)
|
|||
PROFILE_FlushFile();
|
||||
LeaveCriticalSection( &PROFILE_CritSect );
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CloseProfileUserMapping (KERNEL.138)
|
||||
*/
|
||||
BOOL WINAPI CloseProfileUserMapping(void) {
|
||||
FIXME("(), stub!\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -153,7 +153,7 @@ import ntdll.dll
|
|||
135 stdcall ClearCommBreak(long) ClearCommBreak
|
||||
136 stdcall ClearCommError(long ptr ptr) ClearCommError
|
||||
137 stdcall CloseHandle(long) CloseHandle
|
||||
138 stub CloseProfileUserMapping
|
||||
138 stdcall CloseProfileUserMapping() CloseProfileUserMapping
|
||||
139 stub CloseSystemHandle
|
||||
140 stub CommConfigDialogA
|
||||
141 stub CommConfigDialogW
|
||||
|
|
Loading…
Reference in New Issue