Corrected cast so hello5 compiles again.
[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_moniker.h"
14 #include "debug.h"
15
16 /******************************************************************************
17  *              GetRunningObjectTable16 [OLE2.30]
18  */
19 HRESULT WINAPI GetRunningObjectTable16(DWORD reserved, LPVOID *pprot) {
20         FIXME(ole,"(%ld,%p),stub!\n",reserved,pprot);
21         return E_FAIL;
22 }
23
24
25 /***********************************************************************
26  *           GetRunningObjectTable32 (OLE2.73)
27  */
28 HRESULT WINAPI GetRunningObjectTable(DWORD reserved, LPVOID *pprot) {
29         FIXME(ole,"(%ld,%p),stub!\n",reserved,pprot);
30     return E_FAIL;
31 }