:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / ole32 / include / compobj.h
1 #ifndef __WINE_OLE_COMPOBJ_H
2 #define __WINE_OLE_COMPOBJ_H
3
4 /* All private prototype functions used by OLE will be added to this header file */
5
6 /* This function initialize the Running Object Table */
7 HRESULT WINAPI RunningObjectTableImpl_Initialize();
8
9 /* This function uninitialize the Running Object Table */
10 HRESULT WINAPI RunningObjectTableImpl_UnInitialize();
11
12 /* This function decomposes a String path to a String Table containing all the elements ("\" or "subDirectory" or "Directory" or "FileName") of the path */
13 int WINAPI FileMonikerImpl_DecomposePath(LPOLESTR str, LPOLESTR** stringTable);
14
15 #endif /* __WINE_OLE_COMPOBJ_H */