7 #include "debugtools.h"
11 #include "shell32_main.h"
12 #include "wine/undocshell.h"
14 DEFAULT_DEBUG_CHANNEL(shell);
17 /*************************************************************************
18 * PickIconDlg [SHELL32.62]
21 BOOL WINAPI PickIconDlg(
25 LPDWORD lpdwIconIndex)
27 FIXME("(%08x,%s,%08lx,%p):stub.\n",
28 hwndOwner, lpstrFile, nMaxFile,lpdwIconIndex);
32 /*************************************************************************
33 * RunFileDlg [SHELL32.61]
36 * Original name: RunFileDlg (exported by ordinal)
38 void WINAPI RunFileDlg(
41 LPCSTR lpstrDirectory,
43 LPCSTR lpstrDescription,
46 FIXME("(0x%04x 0x%04x %s %s %s 0x%08x):stub.\n",
47 hwndOwner, hIcon, lpstrDirectory, lpstrTitle, lpstrDescription, uFlags);
50 /*************************************************************************
51 * ExitWindowsDialog [SHELL32.60]
56 void WINAPI ExitWindowsDialog (HWND hWndOwner)
58 TRACE("(0x%08x)\n", hWndOwner);
59 if (MessageBoxA( hWndOwner, "Do you want to exit WINE?", "Shutdown", MB_YESNO|MB_ICONQUESTION) == IDYES)
61 SendMessageA ( hWndOwner, WM_QUIT, 0, 0);