Moved some stubs and added forwards in order to make both winapi_check
[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 HRESULT WINAPI OLEPRO32_DllUnregisterServer()
16 {
17         FIXME("not implemented (olepro32.dll) \n");
18         return S_OK;
19 }
20
21 HRESULT WINAPI OLEPRO32_DllRegisterServer()
22 {
23         FIXME("not implemented (olepro32.dll) \n");
24         return S_OK;
25 }
26
27 HRESULT WINAPI OLEPRO32_DllCanUnloadNow( )
28 {
29         FIXME("not implemented (olepro32.dll) \n");
30         return S_OK;
31 }
32
33 HRESULT WINAPI OLEPRO32_DllGetClassObject( REFCLSID rclsid, REFIID riid, LPVOID* ppv )
34 {
35         FIXME("not implemented (olepro32.dll) \n");
36         return S_OK;
37 }