Improved GetRandomRegion().
[wine/wine-kai.git] / include / compobj.h
blob2514fae750bf2b72356b8f45450078cff0eea67a
1 #ifndef __WINE_COMPOBJ_H
2 #define __WINE_COMPOBJ_H
4 /* All private prototye functions used by OLE will be added to this header file */
6 #include "objbase.h"
8 /* This function initialize the Running Object Table */
9 HRESULT WINAPI RunningObjectTableImpl_Initialize();
11 /* This function uninitialize the Running Object Table */
12 HRESULT WINAPI RunningObjectTableImpl_UnInitialize();
14 /* This function decompose a String path to a String Table containing all the elements ("\" or "subDirectory" or "Directoy" or "FileName") of the path */
15 int WINAPI FileMonikerImpl_DecomposePath(LPOLESTR str, LPOLESTR** stringTable);
17 #endif /* __WINE_COMPOBJ_H */