7 #include "ole32_main.h"
8 #include "debugtools.h"
10 DEFAULT_DEBUG_CHANNEL(ole);
12 HINSTANCE OLE32_hInstance = 0;
14 /***********************************************************************
15 * DllEntryPoint (OLE32.@)
18 BOOL WINAPI OLE32_DllEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
20 TRACE("0x%x 0x%lx %p\n", hinstDLL, fdwReason, fImpLoad);
23 case DLL_PROCESS_ATTACH:
24 OLE32_hInstance = hinstDLL;
27 case DLL_PROCESS_DETACH:
34 /***********************************************************************
35 * DllRegisterServer (OLE32.@)
37 HRESULT WINAPI OLE32_DllRegisterServer() {
38 /* FIXME: what Interfaces should we register ... */