compobj.h is a synonym for objbase.h
Moved all the other contents to dlls/ole32/compobj_private.h
This commit is contained in:
parent
40f29eeab7
commit
3116bd9f45
|
@ -34,7 +34,7 @@
|
|||
|
||||
#include "ole.h"
|
||||
#include "ifs.h"
|
||||
#include "compobj.h"
|
||||
#include "compobj_private.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ole);
|
||||
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
#ifndef __WINE_OLE_COMPOBJ_H
|
||||
#define __WINE_OLE_COMPOBJ_H
|
||||
|
||||
/* All private prototype functions used by OLE will be added to this header file */
|
||||
|
||||
#include "wtypes.h"
|
||||
|
||||
/* This function initialize the Running Object Table */
|
||||
HRESULT WINAPI RunningObjectTableImpl_Initialize();
|
||||
|
||||
/* This function uninitialize the Running Object Table */
|
||||
HRESULT WINAPI RunningObjectTableImpl_UnInitialize();
|
||||
|
||||
/* This function decomposes a String path to a String Table containing all the elements ("\" or "subDirectory" or "Directory" or "FileName") of the path */
|
||||
int WINAPI FileMonikerImpl_DecomposePath(LPOLESTR str, LPOLESTR** stringTable);
|
||||
|
||||
#endif /* __WINE_OLE_COMPOBJ_H */
|
|
@ -15,6 +15,8 @@
|
|||
#include "wine/obj_moniker.h"
|
||||
#include "wine/obj_base.h"
|
||||
|
||||
#include "compobj_private.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ole);
|
||||
|
||||
/* filemoniker data structure */
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#include "heap.h"
|
||||
#include "ole2.h"
|
||||
|
||||
#include "compobj_private.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ole)
|
||||
|
||||
#define BLOCK_TAB_SIZE 20 /* represent the first size table and it's increment block size */
|
||||
|
|
|
@ -1,17 +1,7 @@
|
|||
#ifndef __WINE_COMPOBJ_H
|
||||
#define __WINE_COMPOBJ_H
|
||||
|
||||
/* All private prototye functions used by OLE will be added to this header file */
|
||||
|
||||
#include "wtypes.h"
|
||||
|
||||
/* This function initialize the Running Object Table */
|
||||
HRESULT WINAPI RunningObjectTableImpl_Initialize();
|
||||
|
||||
/* This function uninitialize the Running Object Table */
|
||||
HRESULT WINAPI RunningObjectTableImpl_UnInitialize();
|
||||
|
||||
/* This function decompose a String path to a String Table containing all the elements ("\" or "subDirectory" or "Directoy" or "FileName") of the path */
|
||||
int WINAPI FileMonikerImpl_DecomposePath(LPOLESTR str, LPOLESTR** stringTable);
|
||||
/* compobj.h is just a synonym for objbase.h */
|
||||
#include "objbase.h"
|
||||
|
||||
#endif /* __WINE_COMPOBJ_H */
|
||||
|
|
Loading…
Reference in New Issue