Fixed some issues found by winapi_check.
This commit is contained in:
parent
0c0193aa73
commit
be0d06541a
|
@ -10,6 +10,9 @@
|
||||||
#include "winerror.h"
|
#include "winerror.h"
|
||||||
#include "debugtools.h"
|
#include "debugtools.h"
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* DCIOpenProvider (DCIMAN32.@)
|
||||||
|
*/
|
||||||
HDC WINAPI
|
HDC WINAPI
|
||||||
DCIOpenProvider(void) {
|
DCIOpenProvider(void) {
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
|
|
@ -12,9 +12,8 @@ DEFAULT_DEBUG_CHANNEL(ole);
|
||||||
HINSTANCE OLE32_hInstance = 0;
|
HINSTANCE OLE32_hInstance = 0;
|
||||||
static INT OLE32_RefCount = 0;
|
static INT OLE32_RefCount = 0;
|
||||||
|
|
||||||
/*************************************************************************
|
/***********************************************************************
|
||||||
* OLE32_DllEntryPoint
|
* DllEntryPoint (OLE32.@)
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
BOOL WINAPI OLE32_DllEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
|
BOOL WINAPI OLE32_DllEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
|
||||||
|
@ -37,6 +36,9 @@ BOOL WINAPI OLE32_DllEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImp
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* DllRegisterServer (OLE32.@)
|
||||||
|
*/
|
||||||
HRESULT WINAPI OLE32_DllRegisterServer() {
|
HRESULT WINAPI OLE32_DllRegisterServer() {
|
||||||
/* FIXME: what Interfaces should we register ... */
|
/* FIXME: what Interfaces should we register ... */
|
||||||
FIXME("(), stub!\n");
|
FIXME("(), stub!\n");
|
||||||
|
|
Loading…
Reference in New Issue