Module: wine Branch: master Commit: 74c04149be2c3e43065c832d2b90f1434f6fd047 URL: http://source.winehq.org/git/wine.git/?a=commit;h=74c04149be2c3e43065c832d2b...
Author: Rob Shearman rob@codeweavers.com Date: Thu Apr 5 11:34:59 2007 +0100
ole32: Move declaration for FileMonikerImpl_DecomposePath from compobj_private.h to moniker.h.
---
dlls/ole32/compobj_private.h | 3 --- dlls/ole32/moniker.h | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/ole32/compobj_private.h b/dlls/ole32/compobj_private.h index 479cd76..401224a 100644 --- a/dlls/ole32/compobj_private.h +++ b/dlls/ole32/compobj_private.h @@ -239,9 +239,6 @@ HRESULT WINAPI RunningObjectTableImpl_Initialize(void); /* This function uninitialize the Running Object Table */ HRESULT WINAPI RunningObjectTableImpl_UnInitialize(void);
-/* This function decomposes a String path to a String Table containing all the elements ("" or "subDirectory" or "Directory" or "FileName") of the path */ -int FileMonikerImpl_DecomposePath(LPCOLESTR str, LPOLESTR** stringTable); - /* Drag and drop */ void OLEDD_UnInitialize(void);
diff --git a/dlls/ole32/moniker.h b/dlls/ole32/moniker.h index 3398b0e..d3ce652 100644 --- a/dlls/ole32/moniker.h +++ b/dlls/ole32/moniker.h @@ -35,6 +35,9 @@ HRESULT AntiMonikerCF_Create(REFIID riid, LPVOID *ppv); HRESULT CompositeMonikerCF_Create(REFIID riid, LPVOID *ppv); HRESULT ClassMonikerCF_Create(REFIID riid, LPVOID *ppv);
+/* This function decomposes a String path to a String Table containing all the elements ("" or "subDirectory" or "Directory" or "FileName") of the path */ +int FileMonikerImpl_DecomposePath(LPCOLESTR str, LPOLESTR** stringTable); + HRESULT FileMoniker_CreateFromDisplayName(LPBC pbc, LPCOLESTR szDisplayName, LPDWORD pchEaten, LPMONIKER *ppmk); HRESULT ClassMoniker_CreateFromDisplayName(LPBC pbc, LPCOLESTR szDisplayName,