Module: wine Branch: master Commit: 40838cec781fa461f00cb759d9b6ce39fd91edb1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=40838cec781fa461f00cb759d9...
Author: Francois Gouget fgouget@free.fr Date: Sun May 27 13:37:37 2007 +0200
shlwapi/tests: The PSDK does not define IID_IDelayedRelease anymore.
---
dlls/shlwapi/tests/clsid.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/dlls/shlwapi/tests/clsid.c b/dlls/shlwapi/tests/clsid.c index 66712a5..8f0830c 100644 --- a/dlls/shlwapi/tests/clsid.c +++ b/dlls/shlwapi/tests/clsid.c @@ -31,6 +31,9 @@ #define INITGUID #include "initguid.h"
+/* This GUID has been removed from the PSDK */ +DEFINE_OLEGUID(WINE_IID_IDelayedRelease, 0x000214EDL, 0, 0); + /* Function ptrs for ordinal calls */ static HMODULE hShlwapi = 0; static BOOL (WINAPI *pSHLWAPI_269)(LPCSTR, CLSID *) = 0; @@ -59,7 +62,7 @@ const GUID * TEST_guids[] = { &IID_IPersistFolder, &IID_IExtractIconA, &IID_IShellDetails, - &IID_IDelayedRelease, + &WINE_IID_IDelayedRelease, &IID_IShellLinkA, &IID_IShellCopyHookA, &IID_IFileViewerA,