ReactOS 0.4.15-dev-7846-g8ba6c66
olepro32stubs.c File Reference
#include <stdarg.h>
#include "wine/debug.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
Include dependency graph for olepro32stubs.c:

Go to the source code of this file.

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (ole)
 
HRESULT WINAPI DllUnregisterServer (void)
 
HRESULT WINAPI DllRegisterServer (void)
 
HRESULT WINAPI DllCanUnloadNow (void)
 
HRESULT WINAPI DllGetClassObject (REFCLSID rclsid, REFIID riid, LPVOID *ppv)
 

Function Documentation

◆ DllCanUnloadNow()

HRESULT WINAPI DllCanUnloadNow ( void  )

Definition at line 54 of file olepro32stubs.c.

55{
56 return S_FALSE;
57}
#define S_FALSE
Definition: winerror.h:2357

◆ DllGetClassObject()

HRESULT WINAPI DllGetClassObject ( REFCLSID  rclsid,
REFIID  riid,
LPVOID ppv 
)

Definition at line 62 of file olepro32stubs.c.

63{
64 FIXME("stub\n");
65 return S_OK;
66}
#define FIXME(fmt,...)
Definition: debug.h:111
#define S_OK
Definition: intsafe.h:52

◆ DllRegisterServer()

HRESULT WINAPI DllRegisterServer ( void  )

Definition at line 45 of file olepro32stubs.c.

46{
47 FIXME("stub\n");
48 return S_OK;
49}

◆ DllUnregisterServer()

HRESULT WINAPI DllUnregisterServer ( void  )

Definition at line 36 of file olepro32stubs.c.

37{
38 FIXME("stub\n");
39 return S_OK;
40}

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( ole  )