Release 950606
[wine/hacks.git] / misc / olecli.c
blob8be7034941c1e3101c510af4481ef7bd6092b9b3
1 /*
2 * OLECLI library
4 * Copyright 1995 Martin von Loewis
5 */
7 /* At the moment, these are only empty stubs.
8 */
10 #include "windows.h"
11 #include "ole.h"
12 #include "stddebug.h"
13 #include "debug.h"
15 extern LONG OLE_current_handle;
17 /***********************************************************************
18 * OleRegisterClientDoc
20 OLESTATUS WINAPI OleRegisterClientDoc(
21 LPCSTR classname,
22 LPCSTR docname,
23 LONG reserved,
24 LHCLIENTDOC FAR *hRet)
26 dprintf_ole(stdnimp,"OleRegisterClientDoc:%s %s\n",classname,docname);
27 *hRet=++OLE_current_handle;
28 return OLE_OK;
31 /***********************************************************************
32 * OleRenameClientDoc
34 OLESTATUS WINAPI OleRenameClientDoc(LHCLIENTDOC hDoc, LPCSTR newName)
36 dprintf_ole(stdnimp,"OleRenameClientDoc: %ld %s\n",hDoc, newName);
37 return OLE_OK;
40 /***********************************************************************
41 * OleRevokeClientDoc
43 OLESTATUS WINAPI OleRevokeClientDoc(LHCLIENTDOC hServerDoc)
45 dprintf_ole(stdnimp,"OleRevokeClientDoc:%ld\n",hServerDoc);
46 return OLE_OK;