compobj.h is a synonym for objbase.h
Moved all the other contents to dlls/ole32/compobj_private.h
diff --git a/dlls/ole32/compobj_private.h b/dlls/ole32/compobj_private.h
new file mode 100644
index 0000000..e22057d
--- /dev/null
+++ b/dlls/ole32/compobj_private.h
@@ -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 */