Cosmetics.
[wine.git] / ole / moniker.c
blobaa0dc4688dd4afdcac5c7035f31e7ebe924c04cc
1 /*
2 * Monikers
4 * Copyright 1998 Marcus Meissner
5 * Copyright 1999 Noomen Hamza
6 */
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"
16 /******************************************************************************
17 * GetRunningObjectTable16 [OLE2.30]
19 HRESULT WINAPI GetRunningObjectTable16(DWORD reserved, LPVOID *pprot) {
20 FIXME(ole,"(%ld,%p),stub!\n",reserved,pprot);
21 return E_FAIL;
25 /***********************************************************************
26 * GetRunningObjectTable32 (OLE2.73)
28 HRESULT WINAPI GetRunningObjectTable(DWORD reserved, LPVOID *pprot) {
29 FIXME(ole,"(%ld,%p),stub!\n",reserved,pprot);
30 return E_FAIL;