Non-X11 compile fix for generated code.
[wine] / ole / moniker.c
1 /*
2  *      Monikers
3  *
4  *      Copyright 1998  Marcus Meissner
5  *      Copyright 1999  Noomen Hamza
6  */
7
8 #include <ctype.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <assert.h>
12 #include "winerror.h"
13 #include "wine/obj_base.h"
14 #include "wine/obj_storage.h"
15 #include "wine/obj_moniker.h"
16 #include "debug.h"
17
18 /******************************************************************************
19  *              GetRunningObjectTable16 [OLE2.30]
20  */
21 HRESULT WINAPI GetRunningObjectTable16(DWORD reserved, LPVOID *pprot) {
22         FIXME(ole,"(%ld,%p),stub!\n",reserved,pprot);
23         return E_FAIL;
24 }
25
26
27 /***********************************************************************
28  *           GetRunningObjectTable32 (OLE2.73)
29  */
30 HRESULT WINAPI GetRunningObjectTable32(DWORD reserved, LPVOID *pprot) {
31         FIXME(ole,"(%ld,%p),stub!\n",reserved,pprot);
32     return E_FAIL;
33 }