(Merged by Marcus Meissner <marcus@jet.franken.de>)
[wine] / dlls / olepro32 / olepro32stubs.c
1 /*
2  * OlePro32 Stubs
3  *
4  * Copyright 1999 Corel Corporation
5  *
6  * Sean Langley
7  */
8
9 #include "debugtools.h"
10 #include "ole2.h"
11 #include "windef.h"
12
13 DEFAULT_DEBUG_CHANNEL(ole);
14
15 /***********************************************************************
16  *              OLEPRO32_DllUnregisterServer
17  */
18 HRESULT WINAPI OLEPRO32_DllUnregisterServer()
19 {
20         FIXME("not implemented (olepro32.dll) \n");
21         return S_OK;
22 }
23
24 /***********************************************************************
25  *              OLEPRO32_DllRegisterServer
26  */
27 HRESULT WINAPI OLEPRO32_DllRegisterServer()
28 {
29         FIXME("not implemented (olepro32.dll) \n");
30         return S_OK;
31 }
32
33 /***********************************************************************
34  *              OLEPRO32_DllCanUnloadNow
35  */
36 HRESULT WINAPI OLEPRO32_DllCanUnloadNow( )
37 {
38         FIXME("not implemented (olepro32.dll) \n");
39         return S_OK;
40 }
41
42 /***********************************************************************
43  *              OLEPRO32_DllGetClassObject
44  */
45 HRESULT WINAPI OLEPRO32_DllGetClassObject( REFCLSID rclsid, REFIID riid, LPVOID* ppv )
46 {
47         FIXME("not implemented (olepro32.dll) \n");
48         return S_OK;
49 }