Commit d97f7cde authored by Patrik Stridvall's avatar Patrik Stridvall Committed by Alexandre Julliard

Fixed some issues found by winapi_check.

parent 9f7c51d0
......@@ -1253,6 +1253,7 @@ void WINAPI Resurrection16(HDC16 hdc,
/**********************************************************************
* CreateMetaFile (GDI.125)
* CreateMetaFile16 (GDI32.@)
*/
HDC16 WINAPI CreateMetaFile16( LPCSTR filename )
{
......
......@@ -156,7 +156,11 @@ LONG WINAPI KERNEL_nop(void)
return 0;
}
BOOL WINAPI SwitchToThread(VOID)
/***********************************************************************
* SwitchToThread (KERNEL32.@)
*/
BOOL WINAPI SwitchToThread(void)
{
Sleep(0);
return 1;
......
......@@ -1734,7 +1734,7 @@ static int nStatCounter = 0; /* global */
static HMODULE hOleAut32 = 0; /* global */
/***********************************************************************
* CoGetState [OLE32.@]
* CoGetState [OLE32.24]
*
* NOTES: might be incomplete
*/
......
......@@ -23,7 +23,7 @@ init OLE32_DllEntryPoint
21 stdcall CoGetMarshalSizeMax(ptr ptr ptr long ptr long) CoGetMarshalSizeMax
22 stdcall CoGetPSClsid(ptr ptr) CoGetPSClsid
23 stdcall CoGetStandardMarshal(ptr ptr long ptr long ptr) CoGetStandardMarshal
24 stub CoGetState
24 stdcall CoGetState(ptr) CoGetState
25 stub CoGetTreatAsClass # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
26 stdcall CoInitialize(ptr) CoInitialize
27 stdcall CoInitializeWOW(long long) CoInitializeWOW
......
......@@ -1008,7 +1008,7 @@ BOOL WINAPI DAD_DragMove(POINT p)
return FALSE;
}
/*************************************************************************
* DAD_Leave [SHELL32.132]
* DAD_DragLeave [SHELL32.132]
*
*/
BOOL WINAPI DAD_DragLeave(VOID)
......
......@@ -393,7 +393,8 @@ static void CALLBACK URLMON_InternetCallback(HINTERNET hinet, /*DWORD_PTR*/ DWOR
This->filesize = len;
break;
}
}
}
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment