Zebediah Figura : shell32: Move SHWaitForFileToOpen() flags to shellord.c.

Alexandre Julliard julliard at winehq.org
Thu Feb 3 16:06:55 CST 2022


Module: wine
Branch: master
Commit: e1aa67132721247050f39a126e9cdfda99dbdcb1
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=e1aa67132721247050f39a126e9cdfda99dbdcb1

Author: Zebediah Figura <zfigura at codeweavers.com>
Date:   Wed Feb  2 22:56:37 2022 -0600

shell32: Move SHWaitForFileToOpen() flags to shellord.c.

Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/shell32/shellord.c   |  5 +++++
 dlls/shell32/undocshell.h | 10 ----------
 2 files changed, 5 insertions(+), 10 deletions(-)

diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c
index 2c73ce18940..a138f381a92 100644
--- a/dlls/shell32/shellord.c
+++ b/dlls/shell32/shellord.c
@@ -50,6 +50,11 @@
 WINE_DEFAULT_DEBUG_CHANNEL(shell);
 WINE_DECLARE_DEBUG_CHANNEL(pidl);
 
+/* SHWaitForFileToOpen flags */
+#define SHWFF_ADD       0x01
+#define SHWFF_REMOVE    0x02
+#define SHWFF_WAIT      0x04
+
 /* FIXME: !!! move CREATEMRULIST and flags to header file !!! */
 /*        !!! it is in both here and comctl32undoc.c      !!! */
 typedef struct tagCREATEMRULIST
diff --git a/dlls/shell32/undocshell.h b/dlls/shell32/undocshell.h
index 5ed8d25f234..459c51c8454 100644
--- a/dlls/shell32/undocshell.h
+++ b/dlls/shell32/undocshell.h
@@ -208,16 +208,6 @@ BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID *sOtherDirs);
  * Misc Stuff
  */
 
-/* SHWaitForFileToOpen flags */
-#define SHWFF_ADD     0x01
-#define SHWFF_REMOVE  0x02
-#define SHWFF_WAIT    0x04
-
-BOOL WINAPI SHWaitForFileToOpen(
-	LPCITEMIDLIST pidl,
-	DWORD dwFlags,
-	DWORD dwTimeout);
-
 WORD WINAPI ArrangeWindows(HWND hwndParent, DWORD dwReserved, const RECT *lpRect,
         WORD cKids, const HWND *lpKids);
 




More information about the wine-cvs mailing list