Release 990226.
[wine/multimedia.git] / ole / moniker.c
blob04329d5f5795cac5c3a4b19a21fb8a53b772eafb
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_base.h"
14 #include "wine/obj_storage.h"
15 #include "wine/obj_moniker.h"
16 #include "debug.h"
18 /******************************************************************************
19 * GetRunningObjectTable16 [OLE2.30]
21 HRESULT WINAPI GetRunningObjectTable16(DWORD reserved, LPVOID *pprot) {
22 FIXME(ole,"(%ld,%p),stub!\n",reserved,pprot);
23 return E_FAIL;
27 /***********************************************************************
28 * GetRunningObjectTable32 (OLE2.73)
30 HRESULT WINAPI GetRunningObjectTable(DWORD reserved, LPVOID *pprot) {
31 FIXME(ole,"(%ld,%p),stub!\n",reserved,pprot);
32 return E_FAIL;