Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 1 | /* |
Juergen Schmied | ba28ba1 | 1999-01-23 14:12:48 +0000 | [diff] [blame] | 2 | * The parameters of many functions changes between different OS versions |
| 3 | * (NT uses Unicode strings, 95 uses ASCII strings) |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 4 | * |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 5 | * Copyright 1997 Marcus Meissner |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 6 | * 1998 Jürgen Schmied |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 7 | */ |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 8 | #include <string.h> |
Alexandre Julliard | 383da68 | 2000-02-10 22:15:21 +0000 | [diff] [blame] | 9 | #include <stdio.h> |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 10 | #include "winerror.h" |
Marcus Meissner | 317af32 | 1999-02-17 13:51:06 +0000 | [diff] [blame] | 11 | #include "winreg.h" |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 12 | #include "debugtools.h" |
Juergen Schmied | e8d281d | 1998-10-24 09:22:57 +0000 | [diff] [blame] | 13 | #include "winnls.h" |
Juergen Schmied | ba28ba1 | 1999-01-23 14:12:48 +0000 | [diff] [blame] | 14 | #include "heap.h" |
| 15 | |
Juergen Schmied | 28613d3 | 1999-04-22 10:11:04 +0000 | [diff] [blame] | 16 | #include "shellapi.h" |
Alexandre Julliard | b08cb17 | 2000-08-03 04:19:24 +0000 | [diff] [blame] | 17 | #include "shlguid.h" |
Juergen Schmied | ba28ba1 | 1999-01-23 14:12:48 +0000 | [diff] [blame] | 18 | #include "shlobj.h" |
Alexandre Julliard | 85ed45e | 1998-08-22 19:03:56 +0000 | [diff] [blame] | 19 | #include "shell32_main.h" |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 20 | #include "wine/undocshell.h" |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 21 | |
Alexandre Julliard | 383da68 | 2000-02-10 22:15:21 +0000 | [diff] [blame] | 22 | DEFAULT_DEBUG_CHANNEL(shell); |
Patrik Stridvall | b4b9fae | 1999-04-19 14:56:29 +0000 | [diff] [blame] | 23 | |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 24 | /************************************************************************* |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 25 | * ParseFieldA [internal] |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 26 | * |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 27 | * copys a field from a ',' delimited string |
| 28 | * |
| 29 | * first field is nField = 1 |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 30 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 31 | DWORD WINAPI ParseFieldA( |
| 32 | LPCSTR src, |
| 33 | DWORD nField, |
| 34 | LPSTR dst, |
| 35 | DWORD len) |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 36 | { |
| 37 | WARN("('%s',0x%08lx,%p,%ld) semi-stub.\n",src,nField,dst,len); |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 38 | |
| 39 | if (!src || !src[0] || !dst || !len) |
| 40 | return 0; |
| 41 | |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 42 | /* skip n fields delimited by ',' */ |
| 43 | while (nField > 1) |
| 44 | { |
| 45 | if (*src=='\0') return FALSE; |
| 46 | if (*(src++)==',') nField--; |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 47 | } |
| 48 | |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 49 | /* copy part till the next ',' to dst */ |
| 50 | while ( *src!='\0' && *src!=',' && (len--)>0 ) *(dst++)=*(src++); |
| 51 | |
| 52 | /* finalize the string */ |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 53 | *dst=0x0; |
| 54 | |
| 55 | return TRUE; |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | /************************************************************************* |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 59 | * ParseFieldW [internal] |
| 60 | * |
| 61 | * copys a field from a ',' delimited string |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 62 | * |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 63 | * first field is nField = 1 |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 64 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 65 | DWORD WINAPI ParseFieldW(LPCWSTR src, DWORD nField, LPWSTR dst, DWORD len) |
| 66 | { |
| 67 | FIXME("('%s',0x%08lx,%p,%ld) stub.\n", |
| 68 | debugstr_w(src), nField, dst, len); |
| 69 | return FALSE; |
| 70 | } |
| 71 | |
| 72 | /************************************************************************* |
| 73 | * ParseFieldAW [SHELL32.58] |
| 74 | */ |
| 75 | DWORD WINAPI ParseFieldAW(LPCVOID src, DWORD nField, LPVOID dst, DWORD len) |
| 76 | { |
Alexandre Julliard | d586dc9 | 2000-08-14 14:35:01 +0000 | [diff] [blame] | 77 | if (SHELL_OsIsUnicode()) |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 78 | return ParseFieldW(src, nField, dst, len); |
| 79 | return ParseFieldA(src, nField, dst, len); |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 83 | * GetFileNameFromBrowse [SHELL32.63] |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 84 | * |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 85 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 86 | BOOL WINAPI GetFileNameFromBrowse( |
| 87 | HWND hwndOwner, |
| 88 | LPSTR lpstrFile, |
| 89 | DWORD nMaxFile, |
| 90 | LPCSTR lpstrInitialDir, |
| 91 | LPCSTR lpstrDefExt, |
| 92 | LPCSTR lpstrFilter, |
| 93 | LPCSTR lpstrTitle) |
| 94 | { |
| 95 | FIXME("(%04x,%s,%ld,%s,%s,%s,%s):stub.\n", |
| 96 | hwndOwner, lpstrFile, nMaxFile, lpstrInitialDir, lpstrDefExt, |
| 97 | lpstrFilter, lpstrTitle); |
| 98 | |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 99 | /* puts up a Open Dialog and requests input into targetbuf */ |
| 100 | /* OFN_HIDEREADONLY|OFN_NOCHANGEDIR|OFN_FILEMUSTEXIST|OFN_unknown */ |
Alexandre Julliard | d586dc9 | 2000-08-14 14:35:01 +0000 | [diff] [blame] | 101 | strcpy(lpstrFile,"x:\\dummy.exe"); |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 102 | return 1; |
| 103 | } |
| 104 | |
| 105 | /************************************************************************* |
Juergen Schmied | fa9d4e4 | 2000-11-01 21:36:11 +0000 | [diff] [blame] | 106 | * SHGetSetSettings [SHELL32.68] |
| 107 | */ |
| 108 | VOID WINAPI SHGetSetSettings(DWORD x, DWORD y, DWORD z) |
| 109 | { |
| 110 | FIXME("0x%08lx 0x%08lx 0x%08lx\n", x, y, z); |
| 111 | } |
| 112 | |
| 113 | /************************************************************************* |
| 114 | * SHGetSettings [SHELL32.@] |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 115 | * |
Juergen Schmied | ae2d9a7 | 1999-04-10 16:41:50 +0000 | [diff] [blame] | 116 | * NOTES |
| 117 | * the registry path are for win98 (tested) |
| 118 | * and possibly are the same in nt40 |
Juergen Schmied | fa9d4e4 | 2000-11-01 21:36:11 +0000 | [diff] [blame] | 119 | * |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 120 | */ |
Mike McCormack | 46bc534 | 2000-09-18 01:40:13 +0000 | [diff] [blame] | 121 | VOID WINAPI SHGetSettings(LPSHELLFLAGSTATE lpsfs, DWORD dwMask) |
Juergen Schmied | ae2d9a7 | 1999-04-10 16:41:50 +0000 | [diff] [blame] | 122 | { |
| 123 | HKEY hKey; |
| 124 | DWORD dwData; |
| 125 | DWORD dwDataSize = sizeof (DWORD); |
| 126 | |
Mike McCormack | 46bc534 | 2000-09-18 01:40:13 +0000 | [diff] [blame] | 127 | TRACE("(%p 0x%08lx)\n",lpsfs,dwMask); |
Juergen Schmied | ae2d9a7 | 1999-04-10 16:41:50 +0000 | [diff] [blame] | 128 | |
Juergen Schmied | 55c0bca | 1999-04-22 09:18:33 +0000 | [diff] [blame] | 129 | if (RegCreateKeyExA(HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", |
Juergen Schmied | ae2d9a7 | 1999-04-10 16:41:50 +0000 | [diff] [blame] | 130 | 0, 0, 0, KEY_ALL_ACCESS, 0, &hKey, 0)) |
| 131 | return; |
| 132 | |
| 133 | if ( (SSF_SHOWEXTENSIONS & dwMask) && !RegQueryValueExA(hKey, "HideFileExt", 0, 0, (LPBYTE)&dwData, &dwDataSize)) |
| 134 | lpsfs->fShowExtensions = ((dwData == 0) ? 0 : 1); |
| 135 | |
| 136 | if ( (SSF_SHOWINFOTIP & dwMask) && !RegQueryValueExA(hKey, "ShowInfoTip", 0, 0, (LPBYTE)&dwData, &dwDataSize)) |
| 137 | lpsfs->fShowInfoTip = ((dwData == 0) ? 0 : 1); |
| 138 | |
| 139 | if ( (SSF_DONTPRETTYPATH & dwMask) && !RegQueryValueExA(hKey, "DontPrettyPath", 0, 0, (LPBYTE)&dwData, &dwDataSize)) |
| 140 | lpsfs->fDontPrettyPath = ((dwData == 0) ? 0 : 1); |
| 141 | |
| 142 | if ( (SSF_HIDEICONS & dwMask) && !RegQueryValueExA(hKey, "HideIcons", 0, 0, (LPBYTE)&dwData, &dwDataSize)) |
| 143 | lpsfs->fHideIcons = ((dwData == 0) ? 0 : 1); |
| 144 | |
| 145 | if ( (SSF_MAPNETDRVBUTTON & dwMask) && !RegQueryValueExA(hKey, "MapNetDrvBtn", 0, 0, (LPBYTE)&dwData, &dwDataSize)) |
| 146 | lpsfs->fMapNetDrvBtn = ((dwData == 0) ? 0 : 1); |
| 147 | |
| 148 | if ( (SSF_SHOWATTRIBCOL & dwMask) && !RegQueryValueExA(hKey, "ShowAttribCol", 0, 0, (LPBYTE)&dwData, &dwDataSize)) |
| 149 | lpsfs->fShowAttribCol = ((dwData == 0) ? 0 : 1); |
| 150 | |
| 151 | if (((SSF_SHOWALLOBJECTS | SSF_SHOWSYSFILES) & dwMask) && !RegQueryValueExA(hKey, "Hidden", 0, 0, (LPBYTE)&dwData, &dwDataSize)) |
| 152 | { if (dwData == 0) |
| 153 | { if (SSF_SHOWALLOBJECTS & dwMask) lpsfs->fShowAllObjects = 0; |
| 154 | if (SSF_SHOWSYSFILES & dwMask) lpsfs->fShowSysFiles = 0; |
| 155 | } |
| 156 | else if (dwData == 1) |
| 157 | { if (SSF_SHOWALLOBJECTS & dwMask) lpsfs->fShowAllObjects = 1; |
| 158 | if (SSF_SHOWSYSFILES & dwMask) lpsfs->fShowSysFiles = 0; |
| 159 | } |
| 160 | else if (dwData == 2) |
| 161 | { if (SSF_SHOWALLOBJECTS & dwMask) lpsfs->fShowAllObjects = 0; |
| 162 | if (SSF_SHOWSYSFILES & dwMask) lpsfs->fShowSysFiles = 1; |
| 163 | } |
| 164 | } |
| 165 | RegCloseKey (hKey); |
| 166 | |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 167 | TRACE("-- 0x%04x\n", *(WORD*)lpsfs); |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 168 | } |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 169 | |
| 170 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 171 | * SHShellFolderView_Message [SHELL32.73] |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 172 | * |
| 173 | * PARAMETERS |
| 174 | * hwndCabinet defines the explorer cabinet window that contains the |
| 175 | * shellview you need to communicate with |
| 176 | * uMsg identifying the SFVM enum to perform |
| 177 | * lParam |
| 178 | * |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 179 | * NOTES |
| 180 | * Message SFVM_REARRANGE = 1 |
| 181 | * This message gets sent when a column gets clicked to instruct the |
| 182 | * shell view to re-sort the item list. lParam identifies the column |
| 183 | * that was clicked. |
| 184 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 185 | int WINAPI SHShellFolderView_Message( |
| 186 | HWND hwndCabinet, |
| 187 | DWORD dwMessage, |
| 188 | DWORD dwParam) |
| 189 | { |
| 190 | FIXME("%04x %08lx %08lx stub\n",hwndCabinet, dwMessage, dwParam); |
| 191 | return 0; |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 195 | * RegisterShellHook [SHELL32.181] |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 196 | * |
| 197 | * PARAMS |
| 198 | * hwnd [I] window handle |
| 199 | * y [I] flag ???? |
| 200 | * |
| 201 | * NOTES |
| 202 | * exported by ordinal |
| 203 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 204 | BOOL WINAPI RegisterShellHook( |
| 205 | HWND hWnd, |
| 206 | DWORD dwType) |
| 207 | { |
| 208 | FIXME("(0x%08x,0x%08lx):stub.\n",hWnd, dwType); |
| 209 | return TRUE; |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 210 | } |
Alexandre Julliard | 8da12c4 | 1999-01-17 16:55:11 +0000 | [diff] [blame] | 211 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 212 | * ShellMessageBoxW [SHELL32.182] |
Alexandre Julliard | 8da12c4 | 1999-01-17 16:55:11 +0000 | [diff] [blame] | 213 | * |
| 214 | * Format and output errormessage. |
| 215 | * |
Juergen Schmied | 879a6fe | 1999-02-09 14:16:44 +0000 | [diff] [blame] | 216 | * idText resource ID of title or LPSTR |
| 217 | * idTitle resource ID of title or LPSTR |
| 218 | * |
Alexandre Julliard | 8da12c4 | 1999-01-17 16:55:11 +0000 | [diff] [blame] | 219 | * NOTES |
| 220 | * exported by ordinal |
| 221 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 222 | int WINAPIV ShellMessageBoxW( |
| 223 | HINSTANCE hInstance, |
| 224 | HWND hWnd, |
| 225 | LPCWSTR lpText, |
| 226 | LPCWSTR lpCaption, |
| 227 | UINT uType, |
| 228 | ...) |
| 229 | { |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 230 | WCHAR szText[100],szTitle[100]; |
| 231 | LPCWSTR pszText = szText, pszTitle = szTitle, pszTemp; |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 232 | va_list args; |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 233 | int ret; |
| 234 | |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 235 | va_start(args, uType); |
| 236 | /* wvsprintfA(buf,fmt, args); */ |
Alexandre Julliard | 8da12c4 | 1999-01-17 16:55:11 +0000 | [diff] [blame] | 237 | |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 238 | TRACE("(%08lx,%08lx,%p,%p,%08x)\n", |
| 239 | (DWORD)hInstance,(DWORD)hWnd,lpText,lpCaption,uType); |
Alexandre Julliard | 8da12c4 | 1999-01-17 16:55:11 +0000 | [diff] [blame] | 240 | |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 241 | if (!HIWORD(lpCaption)) |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 242 | LoadStringW(hInstance, (DWORD)lpCaption, szTitle, sizeof(szTitle)/sizeof(szTitle[0])); |
Juergen Schmied | 879a6fe | 1999-02-09 14:16:44 +0000 | [diff] [blame] | 243 | else |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 244 | pszTitle = lpCaption; |
Juergen Schmied | 879a6fe | 1999-02-09 14:16:44 +0000 | [diff] [blame] | 245 | |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 246 | if (!HIWORD(lpText)) |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 247 | LoadStringW(hInstance, (DWORD)lpText, szText, sizeof(szText)/sizeof(szText[0])); |
Juergen Schmied | 879a6fe | 1999-02-09 14:16:44 +0000 | [diff] [blame] | 248 | else |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 249 | pszText = lpText; |
Juergen Schmied | 879a6fe | 1999-02-09 14:16:44 +0000 | [diff] [blame] | 250 | |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 251 | FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_STRING, |
| 252 | pszText, 0, 0, (LPWSTR)&pszTemp, 0, &args); |
Patrik Stridvall | 95bcd51 | 2000-04-29 14:29:05 +0000 | [diff] [blame] | 253 | |
| 254 | va_end(args); |
| 255 | |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 256 | ret = MessageBoxW(hWnd,pszTemp,pszTitle,uType); |
| 257 | LocalFree((HLOCAL)pszTemp); |
| 258 | return ret; |
Alexandre Julliard | 8da12c4 | 1999-01-17 16:55:11 +0000 | [diff] [blame] | 259 | } |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 260 | |
| 261 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 262 | * ShellMessageBoxA [SHELL32.183] |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 263 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 264 | int WINAPIV ShellMessageBoxA( |
| 265 | HINSTANCE hInstance, |
| 266 | HWND hWnd, |
| 267 | LPCSTR lpText, |
| 268 | LPCSTR lpCaption, |
| 269 | UINT uType, |
| 270 | ...) |
Ian Schmidt | cdff543 | 1999-09-28 13:04:58 +0000 | [diff] [blame] | 271 | { |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 272 | char szText[100],szTitle[100]; |
| 273 | LPCSTR pszText = szText, pszTitle = szTitle, pszTemp; |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 274 | va_list args; |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 275 | int ret; |
| 276 | |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 277 | va_start(args, uType); |
| 278 | /* wvsprintfA(buf,fmt, args); */ |
Ian Schmidt | cdff543 | 1999-09-28 13:04:58 +0000 | [diff] [blame] | 279 | |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 280 | TRACE("(%08lx,%08lx,%p,%p,%08x)\n", |
| 281 | (DWORD)hInstance,(DWORD)hWnd,lpText,lpCaption,uType); |
Ian Schmidt | cdff543 | 1999-09-28 13:04:58 +0000 | [diff] [blame] | 282 | |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 283 | if (!HIWORD(lpCaption)) |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 284 | LoadStringA(hInstance, (DWORD)lpCaption, szTitle, sizeof(szTitle)); |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 285 | else |
| 286 | pszTitle = lpCaption; |
Ian Schmidt | cdff543 | 1999-09-28 13:04:58 +0000 | [diff] [blame] | 287 | |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 288 | if (!HIWORD(lpText)) |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 289 | LoadStringA(hInstance, (DWORD)lpText, szText, sizeof(szText)); |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 290 | else |
| 291 | pszText = lpText; |
Ian Schmidt | cdff543 | 1999-09-28 13:04:58 +0000 | [diff] [blame] | 292 | |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 293 | FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_STRING, |
| 294 | pszText, 0, 0, (LPSTR)&pszTemp, 0, &args); |
Patrik Stridvall | 95bcd51 | 2000-04-29 14:29:05 +0000 | [diff] [blame] | 295 | |
| 296 | va_end(args); |
| 297 | |
Eric Pouech | 353962d | 2000-10-15 00:31:23 +0000 | [diff] [blame] | 298 | ret = MessageBoxA(hWnd,pszTemp,pszTitle,uType); |
| 299 | LocalFree((HLOCAL)pszTemp); |
| 300 | return ret; |
Ian Schmidt | cdff543 | 1999-09-28 13:04:58 +0000 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 304 | * SHFree [SHELL32.195] |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 305 | * |
| 306 | * NOTES |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 307 | * free_ptr() - frees memory using IMalloc |
| 308 | * exported by ordinal |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 309 | */ |
Juergen Schmied | 0d18aad | 2000-06-01 23:25:44 +0000 | [diff] [blame] | 310 | #define MEM_DEBUG 0 |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 311 | void WINAPI SHFree(LPVOID x) |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 312 | { |
Juergen Schmied | afe53ed | 1999-11-23 22:31:18 +0000 | [diff] [blame] | 313 | #if MEM_DEBUG |
Patrik Stridvall | 0ee98cc | 2000-02-26 13:17:55 +0000 | [diff] [blame] | 314 | WORD len = *(LPWORD)((LPBYTE)x-2); |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 315 | |
Patrik Stridvall | 0ee98cc | 2000-02-26 13:17:55 +0000 | [diff] [blame] | 316 | if ( *(LPWORD)((LPBYTE)x+len) != 0x7384) |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 317 | ERR("MAGIC2!\n"); |
Juergen Schmied | eac255c | 1999-08-15 14:31:36 +0000 | [diff] [blame] | 318 | |
Patrik Stridvall | 0ee98cc | 2000-02-26 13:17:55 +0000 | [diff] [blame] | 319 | if ( (*(LPWORD)((LPBYTE)x-4)) != 0x8271) |
Juergen Schmied | eac255c | 1999-08-15 14:31:36 +0000 | [diff] [blame] | 320 | ERR("MAGIC1!\n"); |
| 321 | else |
Patrik Stridvall | 0ee98cc | 2000-02-26 13:17:55 +0000 | [diff] [blame] | 322 | memset((LPBYTE)x-4, 0xde, len+6); |
Juergen Schmied | eac255c | 1999-08-15 14:31:36 +0000 | [diff] [blame] | 323 | |
| 324 | TRACE("%p len=%u\n",x, len); |
| 325 | |
Patrik Stridvall | 0ee98cc | 2000-02-26 13:17:55 +0000 | [diff] [blame] | 326 | x = (LPBYTE) x - 4; |
Juergen Schmied | eac255c | 1999-08-15 14:31:36 +0000 | [diff] [blame] | 327 | #else |
| 328 | TRACE("%p\n",x); |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 329 | #endif |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 330 | HeapFree(GetProcessHeap(), 0, x); |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 334 | * SHAlloc [SHELL32.196] |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 335 | * |
| 336 | * NOTES |
| 337 | * void *task_alloc(DWORD len), uses SHMalloc allocator |
| 338 | * exported by ordinal |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 339 | */ |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 340 | LPVOID WINAPI SHAlloc(DWORD len) |
| 341 | { |
Juergen Schmied | eac255c | 1999-08-15 14:31:36 +0000 | [diff] [blame] | 342 | LPBYTE ret; |
| 343 | |
Juergen Schmied | afe53ed | 1999-11-23 22:31:18 +0000 | [diff] [blame] | 344 | #if MEM_DEBUG |
Juergen Schmied | eac255c | 1999-08-15 14:31:36 +0000 | [diff] [blame] | 345 | ret = (LPVOID) HeapAlloc(GetProcessHeap(),0,len+6); |
| 346 | #else |
| 347 | ret = (LPVOID) HeapAlloc(GetProcessHeap(),0,len); |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 348 | #endif |
| 349 | |
Juergen Schmied | afe53ed | 1999-11-23 22:31:18 +0000 | [diff] [blame] | 350 | #if MEM_DEBUG |
Juergen Schmied | eac255c | 1999-08-15 14:31:36 +0000 | [diff] [blame] | 351 | *(LPWORD)(ret) = 0x8271; |
| 352 | *(LPWORD)(ret+2) = (WORD)len; |
| 353 | *(LPWORD)(ret+4+len) = 0x7384; |
| 354 | ret += 4; |
| 355 | memset(ret, 0xdf, len); |
| 356 | #endif |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 357 | TRACE("%lu bytes at %p\n",len, ret); |
| 358 | return (LPVOID)ret; |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 359 | } |
| 360 | |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 361 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 362 | * SHRegisterDragDrop [SHELL32.86] |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 363 | * |
| 364 | * NOTES |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 365 | * exported by ordinal |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 366 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 367 | HRESULT WINAPI SHRegisterDragDrop( |
| 368 | HWND hWnd, |
| 369 | LPDROPTARGET pDropTarget) |
Juergen Schmied | b18f3d6 | 1999-04-01 10:23:09 +0000 | [diff] [blame] | 370 | { |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 371 | FIXME("(0x%08x,%p):stub.\n", hWnd, pDropTarget); |
Alexandre Julliard | e1e7537 | 2000-04-24 17:17:49 +0000 | [diff] [blame] | 372 | if (GetShellOle()) return pRegisterDragDrop(hWnd, pDropTarget); |
| 373 | return 0; |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 377 | * SHRevokeDragDrop [SHELL32.87] |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 378 | * |
| 379 | * NOTES |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 380 | * exported by ordinal |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 381 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 382 | HRESULT WINAPI SHRevokeDragDrop(HWND hWnd) |
| 383 | { |
| 384 | FIXME("(0x%08x):stub.\n",hWnd); |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 385 | return 0; |
| 386 | } |
| 387 | |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 388 | /************************************************************************* |
Eric Kohl | 45f8886 | 1999-06-26 11:55:15 +0000 | [diff] [blame] | 389 | * SHDoDragDrop [SHELL32.88] |
| 390 | * |
| 391 | * NOTES |
| 392 | * exported by ordinal |
| 393 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 394 | HRESULT WINAPI SHDoDragDrop( |
| 395 | HWND hWnd, |
| 396 | LPDATAOBJECT lpDataObject, |
| 397 | LPDROPSOURCE lpDropSource, |
| 398 | DWORD dwOKEffect, |
| 399 | LPDWORD pdwEffect) |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 400 | { |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 401 | FIXME("(0x%04x %p %p 0x%08lx %p):stub.\n", |
| 402 | hWnd, lpDataObject, lpDropSource, dwOKEffect, pdwEffect); |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 403 | return 0; |
| 404 | } |
| 405 | |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 406 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 407 | * ArrangeWindows [SHELL32.184] |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 408 | * |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 409 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 410 | WORD WINAPI ArrangeWindows( |
| 411 | HWND hwndParent, |
| 412 | DWORD dwReserved, |
| 413 | LPCRECT lpRect, |
| 414 | WORD cKids, |
| 415 | CONST HWND * lpKids) |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 416 | { |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 417 | FIXME("(0x%08x 0x%08lx %p 0x%04x %p):stub.\n", |
| 418 | hwndParent, dwReserved, lpRect, cKids, lpKids); |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 419 | return 0; |
| 420 | } |
| 421 | |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 422 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 423 | * SignalFileOpen [SHELL32.103] |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 424 | * |
| 425 | * NOTES |
| 426 | * exported by ordinal |
| 427 | */ |
| 428 | DWORD WINAPI |
| 429 | SignalFileOpen (DWORD dwParam1) |
| 430 | { |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 431 | FIXME("(0x%08lx):stub.\n", dwParam1); |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 432 | |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 433 | return 0; |
| 434 | } |
| 435 | |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 436 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 437 | * SHAddToRecentDocs [SHELL32.234] |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 438 | * |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 439 | * PARAMETERS |
| 440 | * uFlags [IN] SHARD_PATH or SHARD_PIDL |
| 441 | * pv [IN] string or pidl, NULL clears the list |
| 442 | * |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 443 | * NOTES |
| 444 | * exported by name |
| 445 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 446 | DWORD WINAPI SHAddToRecentDocs (UINT uFlags,LPCVOID pv) |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 447 | { if (SHARD_PIDL==uFlags) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 448 | { FIXME("(0x%08x,pidl=%p):stub.\n", uFlags,pv); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 449 | } |
| 450 | else |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 451 | { FIXME("(0x%08x,%s):stub.\n", uFlags,(char*)pv); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 452 | } |
| 453 | return 0; |
| 454 | } |
Juergen Schmied | 6acd059 | 1998-10-11 15:50:14 +0000 | [diff] [blame] | 455 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 456 | * SHCreateShellFolderViewEx [SHELL32.174] |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 457 | * |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 458 | * NOTES |
| 459 | * see IShellFolder::CreateViewObject |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 460 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 461 | HRESULT WINAPI SHCreateShellFolderViewEx( |
Patrik Stridvall | 2b3aa61 | 2000-12-01 23:58:28 +0000 | [diff] [blame] | 462 | LPCSHELLFOLDERVIEWINFO psvcbi, /* [in] shelltemplate struct */ |
| 463 | LPSHELLVIEW* ppv) /* [out] IShellView pointer */ |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 464 | { |
| 465 | IShellView * psf; |
| 466 | HRESULT hRes; |
| 467 | |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 468 | TRACE("sf=%p pidl=%p cb=%p mode=0x%08x parm=0x%08lx\n", |
| 469 | psvcbi->pshf, psvcbi->pidlFolder, psvcbi->lpfnCallback, |
| 470 | psvcbi->uViewMode, psvcbi->dwUser); |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 471 | |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 472 | psf = IShellView_Constructor(psvcbi->pshf); |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 473 | |
| 474 | if (!psf) |
| 475 | return E_OUTOFMEMORY; |
| 476 | |
| 477 | IShellView_AddRef(psf); |
| 478 | hRes = IShellView_QueryInterface(psf, &IID_IShellView, (LPVOID *)ppv); |
| 479 | IShellView_Release(psf); |
| 480 | |
| 481 | return hRes; |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 482 | } |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 483 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 484 | * SHWinHelp [SHELL32.127] |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 485 | * |
| 486 | */ |
| 487 | HRESULT WINAPI SHWinHelp (DWORD v, DWORD w, DWORD x, DWORD z) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 488 | { FIXME("0x%08lx 0x%08lx 0x%08lx 0x%08lx stub\n",v,w,x,z); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 489 | return 0; |
| 490 | } |
| 491 | /************************************************************************* |
Eric Kohl | a8ea46b | 1998-10-11 13:25:51 +0000 | [diff] [blame] | 492 | * SHRunControlPanel [SHELL32.161] |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 493 | * |
| 494 | */ |
Eric Kohl | a8ea46b | 1998-10-11 13:25:51 +0000 | [diff] [blame] | 495 | HRESULT WINAPI SHRunControlPanel (DWORD x, DWORD z) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 496 | { FIXME("0x%08lx 0x%08lx stub\n",x,z); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 497 | return 0; |
| 498 | } |
| 499 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 500 | * ShellExecuteEx [SHELL32.291] |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 501 | * |
| 502 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 503 | BOOL WINAPI ShellExecuteExAW (LPVOID sei) |
Alexandre Julliard | d586dc9 | 2000-08-14 14:35:01 +0000 | [diff] [blame] | 504 | { if (SHELL_OsIsUnicode()) |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 505 | return ShellExecuteExW (sei); |
| 506 | return ShellExecuteExA (sei); |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 507 | } |
| 508 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 509 | * ShellExecuteExA [SHELL32.292] |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 510 | * |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 511 | * placeholder in the commandline: |
| 512 | * %1 file |
| 513 | * %2 printer |
| 514 | * %3 driver |
| 515 | * %4 port |
| 516 | * %I adress of a global item ID (explorer switch /idlist) |
| 517 | * %L ??? path/url/current file ??? |
| 518 | * %S ??? |
| 519 | * %* all following parameters (see batfile) |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 520 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 521 | BOOL WINAPI ShellExecuteExA (LPSHELLEXECUTEINFOA sei) |
Juergen Schmied | 98f6cf0 | 1998-12-11 10:58:48 +0000 | [diff] [blame] | 522 | { CHAR szApplicationName[MAX_PATH],szCommandline[MAX_PATH],szPidl[20]; |
| 523 | LPSTR pos; |
| 524 | int gap, len; |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 525 | STARTUPINFOA startup; |
| 526 | PROCESS_INFORMATION info; |
Juergen Schmied | 98f6cf0 | 1998-12-11 10:58:48 +0000 | [diff] [blame] | 527 | |
Juergen Schmied | 37fe75b | 1999-07-10 11:54:17 +0000 | [diff] [blame] | 528 | WARN("mask=0x%08lx hwnd=0x%04x verb=%s file=%s parm=%s dir=%s show=0x%08x class=%s incomplete\n", |
Juergen Schmied | 98f6cf0 | 1998-12-11 10:58:48 +0000 | [diff] [blame] | 529 | sei->fMask, sei->hwnd, sei->lpVerb, sei->lpFile, |
Juergen Schmied | 37fe75b | 1999-07-10 11:54:17 +0000 | [diff] [blame] | 530 | sei->lpParameters, sei->lpDirectory, sei->nShow, |
| 531 | (sei->fMask & SEE_MASK_CLASSNAME) ? sei->lpClass : "not used"); |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 532 | |
Juergen Schmied | 98f6cf0 | 1998-12-11 10:58:48 +0000 | [diff] [blame] | 533 | ZeroMemory(szApplicationName,MAX_PATH); |
| 534 | if (sei->lpFile) |
| 535 | strcpy(szApplicationName, sei->lpFile); |
| 536 | |
| 537 | ZeroMemory(szCommandline,MAX_PATH); |
| 538 | if (sei->lpParameters) |
| 539 | strcpy(szCommandline, sei->lpParameters); |
| 540 | |
| 541 | if (sei->fMask & (SEE_MASK_CLASSKEY | SEE_MASK_INVOKEIDLIST | SEE_MASK_ICON | SEE_MASK_HOTKEY | |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 542 | SEE_MASK_CONNECTNETDRV | SEE_MASK_FLAG_DDEWAIT | |
Juergen Schmied | 98f6cf0 | 1998-12-11 10:58:48 +0000 | [diff] [blame] | 543 | SEE_MASK_DOENVSUBST | SEE_MASK_FLAG_NO_UI | SEE_MASK_UNICODE | |
| 544 | SEE_MASK_NO_CONSOLE | SEE_MASK_ASYNCOK | SEE_MASK_HMONITOR )) |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 545 | { |
| 546 | FIXME("flags ignored: 0x%08lx\n", sei->fMask); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 547 | } |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 548 | |
| 549 | /* launch a document by fileclass like 'Wordpad.Document.1' */ |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 550 | if (sei->fMask & SEE_MASK_CLASSNAME) |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 551 | { |
| 552 | /* the commandline contains 'c:\Path\wordpad.exe "%1"' */ |
| 553 | HCR_GetExecuteCommand(sei->lpClass, (sei->lpVerb) ? sei->lpVerb : "open", szCommandline, 256); |
| 554 | /* fixme: get the extension of lpFile, check if it fits to the lpClass */ |
| 555 | TRACE("SEE_MASK_CLASSNAME->'%s'\n", szCommandline); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 556 | } |
Juergen Schmied | 98f6cf0 | 1998-12-11 10:58:48 +0000 | [diff] [blame] | 557 | |
| 558 | /* process the IDList */ |
| 559 | if ( (sei->fMask & SEE_MASK_INVOKEIDLIST) == SEE_MASK_INVOKEIDLIST) /*0x0c*/ |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 560 | { |
| 561 | SHGetPathFromIDListA (sei->lpIDList,szApplicationName); |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 562 | TRACE("-- idlist=%p (%s)\n", sei->lpIDList, szApplicationName); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 563 | } |
Juergen Schmied | 98f6cf0 | 1998-12-11 10:58:48 +0000 | [diff] [blame] | 564 | else |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 565 | { |
| 566 | if (sei->fMask & SEE_MASK_IDLIST ) |
| 567 | { |
Juergen Schmied | 98f6cf0 | 1998-12-11 10:58:48 +0000 | [diff] [blame] | 568 | pos = strstr(szCommandline, "%I"); |
| 569 | if (pos) |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 570 | { |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 571 | LPVOID pv; |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 572 | HGLOBAL hmem = SHAllocShared ( sei->lpIDList, ILGetSize(sei->lpIDList), 0); |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 573 | pv = SHLockShared(hmem,0); |
| 574 | sprintf(szPidl,":%p",pv ); |
| 575 | SHUnlockShared(pv); |
Juergen Schmied | 98f6cf0 | 1998-12-11 10:58:48 +0000 | [diff] [blame] | 576 | |
| 577 | gap = strlen(szPidl); |
| 578 | len = strlen(pos)-2; |
| 579 | memmove(pos+gap,pos+2,len); |
| 580 | memcpy(pos,szPidl,gap); |
| 581 | |
| 582 | } |
| 583 | } |
| 584 | } |
| 585 | |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 586 | TRACE("execute:'%s','%s'\n",szApplicationName, szCommandline); |
| 587 | |
| 588 | strcat(szApplicationName, " "); |
| 589 | strcat(szApplicationName, szCommandline); |
| 590 | |
| 591 | ZeroMemory(&startup,sizeof(STARTUPINFOA)); |
| 592 | startup.cb = sizeof(STARTUPINFOA); |
| 593 | |
| 594 | if (! CreateProcessA(NULL, szApplicationName, |
| 595 | NULL, NULL, FALSE, 0, |
| 596 | NULL, NULL, &startup, &info)) |
| 597 | { |
| 598 | sei->hInstApp = GetLastError(); |
| 599 | return FALSE; |
Juergen Schmied | 98f6cf0 | 1998-12-11 10:58:48 +0000 | [diff] [blame] | 600 | } |
| 601 | |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 602 | sei->hInstApp = 33; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 603 | |
Juergen Schmied | eabe82b | 2000-02-26 18:45:09 +0000 | [diff] [blame] | 604 | /* Give 30 seconds to the app to come up */ |
| 605 | if ( WaitForInputIdle ( info.hProcess, 30000 ) == 0xFFFFFFFF ) |
| 606 | ERR("WaitForInputIdle failed: Error %ld\n", GetLastError() ); |
| 607 | |
| 608 | if(sei->fMask & SEE_MASK_NOCLOSEPROCESS) |
| 609 | sei->hProcess = info.hProcess; |
| 610 | else |
| 611 | CloseHandle( info.hProcess ); |
| 612 | CloseHandle( info.hThread ); |
| 613 | return TRUE; |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 614 | } |
| 615 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 616 | * ShellExecuteExW [SHELL32.293] |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 617 | * |
| 618 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 619 | BOOL WINAPI ShellExecuteExW (LPSHELLEXECUTEINFOW sei) |
| 620 | { SHELLEXECUTEINFOA seiA; |
Juergen Schmied | ba28ba1 | 1999-01-23 14:12:48 +0000 | [diff] [blame] | 621 | DWORD ret; |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 622 | |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 623 | TRACE("%p\n", sei); |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 624 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 625 | memcpy(&seiA, sei, sizeof(SHELLEXECUTEINFOA)); |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 626 | |
Juergen Schmied | ba28ba1 | 1999-01-23 14:12:48 +0000 | [diff] [blame] | 627 | if (sei->lpVerb) |
| 628 | seiA.lpVerb = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpVerb); |
| 629 | |
| 630 | if (sei->lpFile) |
| 631 | seiA.lpFile = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpFile); |
| 632 | |
| 633 | if (sei->lpParameters) |
| 634 | seiA.lpParameters = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpParameters); |
| 635 | |
| 636 | if (sei->lpDirectory) |
| 637 | seiA.lpDirectory = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpDirectory); |
| 638 | |
| 639 | if ((sei->fMask & SEE_MASK_CLASSNAME) && sei->lpClass) |
| 640 | seiA.lpClass = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpClass); |
| 641 | else |
| 642 | seiA.lpClass = NULL; |
| 643 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 644 | ret = ShellExecuteExA(&seiA); |
Juergen Schmied | ba28ba1 | 1999-01-23 14:12:48 +0000 | [diff] [blame] | 645 | |
| 646 | if (seiA.lpVerb) HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpVerb ); |
| 647 | if (seiA.lpFile) HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpFile ); |
| 648 | if (seiA.lpParameters) HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpParameters ); |
| 649 | if (seiA.lpDirectory) HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpDirectory ); |
| 650 | if (seiA.lpClass) HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpClass ); |
| 651 | |
| 652 | return ret; |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 653 | } |
Juergen Schmied | ba28ba1 | 1999-01-23 14:12:48 +0000 | [diff] [blame] | 654 | |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 655 | static LPUNKNOWN SHELL32_IExplorerInterface=0; |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 656 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 657 | * SHSetInstanceExplorer [SHELL32.176] |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 658 | * |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 659 | * NOTES |
| 660 | * Sets the interface |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 661 | */ |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 662 | HRESULT WINAPI SHSetInstanceExplorer (LPUNKNOWN lpUnknown) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 663 | { TRACE("%p\n", lpUnknown); |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 664 | SHELL32_IExplorerInterface = lpUnknown; |
| 665 | return (HRESULT) lpUnknown; |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 666 | } |
| 667 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 668 | * SHGetInstanceExplorer [SHELL32.256] |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 669 | * |
| 670 | * NOTES |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 671 | * gets the interface pointer of the explorer and a reference |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 672 | */ |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 673 | HRESULT WINAPI SHGetInstanceExplorer (LPUNKNOWN * lpUnknown) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 674 | { TRACE("%p\n", lpUnknown); |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 675 | |
| 676 | *lpUnknown = SHELL32_IExplorerInterface; |
| 677 | |
| 678 | if (!SHELL32_IExplorerInterface) |
| 679 | return E_FAIL; |
| 680 | |
Francois Gouget | 6e74ec0 | 1999-10-13 14:01:40 +0000 | [diff] [blame] | 681 | IUnknown_AddRef(SHELL32_IExplorerInterface); |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 682 | return NOERROR; |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 683 | } |
| 684 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 685 | * SHFreeUnusedLibraries [SHELL32.123] |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 686 | * |
| 687 | * NOTES |
| 688 | * exported by name |
| 689 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 690 | void WINAPI SHFreeUnusedLibraries (void) |
| 691 | { |
| 692 | FIXME("stub\n"); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 693 | } |
| 694 | /************************************************************************* |
Eric Kohl | 8d8a123 | 1999-07-31 13:06:39 +0000 | [diff] [blame] | 695 | * DAD_SetDragImage [SHELL32.136] |
| 696 | * |
| 697 | * NOTES |
| 698 | * exported by name |
| 699 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 700 | BOOL WINAPI DAD_SetDragImage( |
| 701 | HIMAGELIST himlTrack, |
| 702 | LPPOINT lppt) |
| 703 | { |
| 704 | FIXME("%p %p stub\n",himlTrack, lppt); |
Eric Kohl | 8d8a123 | 1999-07-31 13:06:39 +0000 | [diff] [blame] | 705 | return 0; |
| 706 | } |
| 707 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 708 | * DAD_ShowDragImage [SHELL32.137] |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 709 | * |
| 710 | * NOTES |
| 711 | * exported by name |
| 712 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 713 | BOOL WINAPI DAD_ShowDragImage(BOOL bShow) |
| 714 | { |
| 715 | FIXME("0x%08x stub\n",bShow); |
| 716 | return 0; |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 717 | } |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 718 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 719 | * ReadCabinetState [NT 4.0:SHELL32.651] |
Juergen Schmied | 6acd059 | 1998-10-11 15:50:14 +0000 | [diff] [blame] | 720 | * |
| 721 | */ |
| 722 | HRESULT WINAPI ReadCabinetState(DWORD u, DWORD v) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 723 | { FIXME("0x%04lx 0x%04lx stub\n",u,v); |
Juergen Schmied | 6acd059 | 1998-10-11 15:50:14 +0000 | [diff] [blame] | 724 | return 0; |
| 725 | } |
| 726 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 727 | * WriteCabinetState [NT 4.0:SHELL32.652] |
Juergen Schmied | 6acd059 | 1998-10-11 15:50:14 +0000 | [diff] [blame] | 728 | * |
| 729 | */ |
| 730 | HRESULT WINAPI WriteCabinetState(DWORD u) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 731 | { FIXME("0x%04lx stub\n",u); |
Juergen Schmied | 6acd059 | 1998-10-11 15:50:14 +0000 | [diff] [blame] | 732 | return 0; |
| 733 | } |
| 734 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 735 | * FileIconInit [SHELL32.660] |
Petter Reinholdtsen | 5a17c03 | 1998-10-13 12:49:40 +0000 | [diff] [blame] | 736 | * |
| 737 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 738 | BOOL WINAPI FileIconInit(BOOL bFullInit) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 739 | { FIXME("(%s)\n", bFullInit ? "true" : "false"); |
Petter Reinholdtsen | 5a17c03 | 1998-10-13 12:49:40 +0000 | [diff] [blame] | 740 | return 0; |
| 741 | } |
| 742 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 743 | * IsUserAdmin [NT 4.0:SHELL32.680] |
Juergen Schmied | 6acd059 | 1998-10-11 15:50:14 +0000 | [diff] [blame] | 744 | * |
| 745 | */ |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 746 | HRESULT WINAPI IsUserAdmin(void) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 747 | { FIXME("stub\n"); |
Juergen Schmied | 6acd059 | 1998-10-11 15:50:14 +0000 | [diff] [blame] | 748 | return TRUE; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 749 | } |
Patrik Stridvall | fcfacb9 | 2000-03-24 20:46:04 +0000 | [diff] [blame] | 750 | |
Eric Kohl | a8ea46b | 1998-10-11 13:25:51 +0000 | [diff] [blame] | 751 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 752 | * SHAllocShared [SHELL32.520] |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 753 | * |
| 754 | * NOTES |
| 755 | * parameter1 is return value from HeapAlloc |
| 756 | * parameter2 is equal to the size allocated with HeapAlloc |
| 757 | * parameter3 is return value from GetCurrentProcessId |
| 758 | * |
| 759 | * the return value is posted as lParam with 0x402 (WM_USER+2) to somewhere |
| 760 | * WM_USER+2 could be the undocumented CWM_SETPATH |
| 761 | * the allocated memory contains a pidl |
| 762 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 763 | HGLOBAL WINAPI SHAllocShared(LPVOID psrc, DWORD size, DWORD procID) |
| 764 | { HGLOBAL hmem; |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 765 | LPVOID pmem; |
| 766 | |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 767 | TRACE("ptr=%p size=0x%04lx procID=0x%04lx\n",psrc,size,procID); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 768 | hmem = GlobalAlloc(GMEM_FIXED, size); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 769 | if (!hmem) |
| 770 | return 0; |
| 771 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 772 | pmem = GlobalLock (hmem); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 773 | |
| 774 | if (! pmem) |
| 775 | return 0; |
| 776 | |
| 777 | memcpy (pmem, psrc, size); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 778 | GlobalUnlock(hmem); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 779 | return hmem; |
| 780 | } |
| 781 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 782 | * SHLockShared [SHELL32.521] |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 783 | * |
| 784 | * NOTES |
| 785 | * parameter1 is return value from SHAllocShared |
| 786 | * parameter2 is return value from GetCurrentProcessId |
| 787 | * the receiver of (WM_USER+2) trys to lock the HANDLE (?) |
| 788 | * the returnvalue seems to be a memoryadress |
| 789 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 790 | LPVOID WINAPI SHLockShared(HANDLE hmem, DWORD procID) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 791 | { TRACE("handle=0x%04x procID=0x%04lx\n",hmem,procID); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 792 | return GlobalLock(hmem); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 793 | } |
| 794 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 795 | * SHUnlockShared [SHELL32.522] |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 796 | * |
| 797 | * NOTES |
| 798 | * parameter1 is return value from SHLockShared |
| 799 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 800 | BOOL WINAPI SHUnlockShared(LPVOID pv) |
| 801 | { |
| 802 | TRACE("%p\n",pv); |
| 803 | return GlobalUnlock((HANDLE)pv); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 804 | } |
| 805 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 806 | * SHFreeShared [SHELL32.523] |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 807 | * |
| 808 | * NOTES |
| 809 | * parameter1 is return value from SHAllocShared |
| 810 | * parameter2 is return value from GetCurrentProcessId |
| 811 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 812 | BOOL WINAPI SHFreeShared( |
| 813 | HANDLE hMem, |
| 814 | DWORD pid) |
| 815 | { |
| 816 | TRACE("handle=0x%04x 0x%04lx\n",hMem,pid); |
| 817 | return GlobalFree(hMem); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 821 | * SetAppStartingCursor [SHELL32.99] |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 822 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 823 | HRESULT WINAPI SetAppStartingCursor(HWND u, DWORD v) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 824 | { FIXME("hwnd=0x%04x 0x%04lx stub\n",u,v ); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 825 | return 0; |
| 826 | } |
| 827 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 828 | * SHLoadOLE [SHELL32.151] |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 829 | * |
| 830 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 831 | HRESULT WINAPI SHLoadOLE(DWORD u) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 832 | { FIXME("0x%04lx stub\n",u); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 833 | return S_OK; |
| 834 | } |
| 835 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 836 | * DriveType [SHELL32.64] |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 837 | * |
| 838 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 839 | HRESULT WINAPI DriveType(DWORD u) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 840 | { FIXME("0x%04lx stub\n",u); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 841 | return 0; |
| 842 | } |
| 843 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 844 | * SHAbortInvokeCommand [SHELL32.198] |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 845 | * |
| 846 | */ |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 847 | HRESULT WINAPI SHAbortInvokeCommand(void) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 848 | { FIXME("stub\n"); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 849 | return 1; |
| 850 | } |
| 851 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 852 | * SHOutOfMemoryMessageBox [SHELL32.126] |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 853 | * |
| 854 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 855 | int WINAPI SHOutOfMemoryMessageBox( |
| 856 | HWND hwndOwner, |
| 857 | LPCSTR lpCaption, |
| 858 | UINT uType) |
| 859 | { |
| 860 | FIXME("0x%04x %s 0x%08x stub\n",hwndOwner, lpCaption, uType); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 861 | return 0; |
| 862 | } |
| 863 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 864 | * SHFlushClipboard [SHELL32.121] |
Eric Kohl | a8ea46b | 1998-10-11 13:25:51 +0000 | [diff] [blame] | 865 | * |
| 866 | */ |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 867 | HRESULT WINAPI SHFlushClipboard(void) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 868 | { FIXME("stub\n"); |
Juergen Schmied | 6101324 | 1998-10-16 15:40:20 +0000 | [diff] [blame] | 869 | return 1; |
Eric Kohl | a8ea46b | 1998-10-11 13:25:51 +0000 | [diff] [blame] | 870 | } |
Ulrich Czekalla | c8a3f7a | 1999-10-23 16:50:58 +0000 | [diff] [blame] | 871 | |
Juergen Schmied | 72b76d1 | 1998-11-15 13:28:00 +0000 | [diff] [blame] | 872 | /************************************************************************* |
Juergen Schmied | dd153f1 | 1999-03-13 17:10:36 +0000 | [diff] [blame] | 873 | * SHWaitForFileToOpen [SHELL32.97] |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 874 | * |
| 875 | */ |
Juergen Schmied | 85b9293 | 2000-04-28 20:21:49 +0000 | [diff] [blame] | 876 | BOOL WINAPI SHWaitForFileToOpen( |
| 877 | LPCITEMIDLIST pidl, |
| 878 | DWORD dwFlags, |
| 879 | DWORD dwTimeout) |
| 880 | { |
| 881 | FIXME("%p 0x%08lx 0x%08lx stub\n", pidl, dwFlags, dwTimeout); |
Juergen Schmied | 07e0d94 | 1998-12-01 08:55:13 +0000 | [diff] [blame] | 882 | return 0; |
| 883 | } |
Juergen Schmied | ddecd8a | 1999-03-25 10:55:43 +0000 | [diff] [blame] | 884 | |
Juergen Schmied | b18f3d6 | 1999-04-01 10:23:09 +0000 | [diff] [blame] | 885 | /************************************************************************ |
| 886 | * shell32_654 [SHELL32.654] |
| 887 | * |
Juergen Schmied | 37fe75b | 1999-07-10 11:54:17 +0000 | [diff] [blame] | 888 | * NOTES: first parameter seems to be a pointer (same as passed to WriteCabinetState) |
| 889 | * second one could be a size (0x0c). The size is the same as the structure saved to |
| 890 | * HCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState |
| 891 | * I'm (js) guessing: this one is just ReadCabinetState ;-) |
Juergen Schmied | b18f3d6 | 1999-04-01 10:23:09 +0000 | [diff] [blame] | 892 | */ |
Ian Schmidt | beed983 | 1999-05-23 09:28:52 +0000 | [diff] [blame] | 893 | HRESULT WINAPI shell32_654 (DWORD x, DWORD y) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 894 | { FIXME("0x%08lx 0x%08lx stub\n",x,y); |
Juergen Schmied | ddecd8a | 1999-03-25 10:55:43 +0000 | [diff] [blame] | 895 | return 0; |
| 896 | } |
Juergen Schmied | b18f3d6 | 1999-04-01 10:23:09 +0000 | [diff] [blame] | 897 | |
| 898 | /************************************************************************ |
| 899 | * RLBuildListOfPaths [SHELL32.146] |
| 900 | * |
| 901 | * NOTES |
| 902 | * builds a DPA |
| 903 | */ |
Juergen Schmied | 43577ec | 1999-07-25 12:22:57 +0000 | [diff] [blame] | 904 | DWORD WINAPI RLBuildListOfPaths (void) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 905 | { FIXME("stub\n"); |
Juergen Schmied | b18f3d6 | 1999-04-01 10:23:09 +0000 | [diff] [blame] | 906 | return 0; |
| 907 | } |
| 908 | /************************************************************************ |
Juergen Schmied | 55c0bca | 1999-04-22 09:18:33 +0000 | [diff] [blame] | 909 | * SHValidateUNC [SHELL32.173] |
| 910 | * |
| 911 | */ |
Ian Schmidt | 38aeff0 | 1999-05-29 10:52:00 +0000 | [diff] [blame] | 912 | HRESULT WINAPI SHValidateUNC (DWORD x, DWORD y, DWORD z) |
Juergen Schmied | 37fe75b | 1999-07-10 11:54:17 +0000 | [diff] [blame] | 913 | { |
| 914 | FIXME("0x%08lx 0x%08lx 0x%08lx stub\n",x,y,z); |
Juergen Schmied | 55c0bca | 1999-04-22 09:18:33 +0000 | [diff] [blame] | 915 | return 0; |
| 916 | } |
Juergen Schmied | 37fe75b | 1999-07-10 11:54:17 +0000 | [diff] [blame] | 917 | |
| 918 | /************************************************************************ |
Patrik Stridvall | fcfacb9 | 2000-03-24 20:46:04 +0000 | [diff] [blame] | 919 | * DoEnvironmentSubstA [SHELL32.1222] |
Juergen Schmied | 37fe75b | 1999-07-10 11:54:17 +0000 | [diff] [blame] | 920 | * |
| 921 | */ |
| 922 | HRESULT WINAPI DoEnvironmentSubstA(LPSTR x, LPSTR y) |
| 923 | { |
Patrik Stridvall | b905023 | 2000-05-11 21:48:28 +0000 | [diff] [blame] | 924 | FIXME("(%s, %s) stub\n", debugstr_a(x), debugstr_a(y)); |
Juergen Schmied | 37fe75b | 1999-07-10 11:54:17 +0000 | [diff] [blame] | 925 | return 0; |
| 926 | } |
| 927 | |
Patrik Stridvall | fcfacb9 | 2000-03-24 20:46:04 +0000 | [diff] [blame] | 928 | /************************************************************************ |
| 929 | * DoEnvironmentSubstW [SHELL32.1223] |
| 930 | * |
| 931 | */ |
Juergen Schmied | 37fe75b | 1999-07-10 11:54:17 +0000 | [diff] [blame] | 932 | HRESULT WINAPI DoEnvironmentSubstW(LPWSTR x, LPWSTR y) |
| 933 | { |
Patrik Stridvall | b905023 | 2000-05-11 21:48:28 +0000 | [diff] [blame] | 934 | FIXME("(%s, %s): stub\n", debugstr_w(x), debugstr_w(y)); |
Juergen Schmied | 37fe75b | 1999-07-10 11:54:17 +0000 | [diff] [blame] | 935 | return 0; |
| 936 | } |
| 937 | |
Patrik Stridvall | fcfacb9 | 2000-03-24 20:46:04 +0000 | [diff] [blame] | 938 | /************************************************************************ |
| 939 | * DoEnvironmentSubst [SHELL32.53] |
| 940 | * |
| 941 | */ |
Juergen Schmied | 37fe75b | 1999-07-10 11:54:17 +0000 | [diff] [blame] | 942 | HRESULT WINAPI DoEnvironmentSubstAW(LPVOID x, LPVOID y) |
| 943 | { |
Alexandre Julliard | d586dc9 | 2000-08-14 14:35:01 +0000 | [diff] [blame] | 944 | if (SHELL_OsIsUnicode()) |
Juergen Schmied | 37fe75b | 1999-07-10 11:54:17 +0000 | [diff] [blame] | 945 | return DoEnvironmentSubstW(x, y); |
| 946 | return DoEnvironmentSubstA(x, y); |
| 947 | } |
Eric Kohl | 8d8a123 | 1999-07-31 13:06:39 +0000 | [diff] [blame] | 948 | |
Ian Schmidt | cdff543 | 1999-09-28 13:04:58 +0000 | [diff] [blame] | 949 | /************************************************************************* |
| 950 | * shell32_243 [SHELL32.243] |
| 951 | * |
| 952 | * Win98+ by-ordinal routine. In Win98 this routine returns zero and |
| 953 | * does nothing else. Possibly this does something in NT or SHELL32 5.0? |
| 954 | * |
| 955 | */ |
| 956 | |
| 957 | BOOL WINAPI shell32_243(DWORD a, DWORD b) |
| 958 | { |
| 959 | return FALSE; |
| 960 | } |
Ian Schmidt | ace09a7 | 1999-10-25 15:36:39 +0000 | [diff] [blame] | 961 | |
Juergen Schmied | 0d18aad | 2000-06-01 23:25:44 +0000 | [diff] [blame] | 962 | /************************************************************************* |
Juergen Schmied | 0d18aad | 2000-06-01 23:25:44 +0000 | [diff] [blame] | 963 | * SHELL32_714 [SHELL32] |
| 964 | */ |
| 965 | DWORD WINAPI SHELL32_714(LPVOID x) |
| 966 | { |
| 967 | FIXME("(%s)stub\n", debugstr_w(x)); |
| 968 | return 0; |
| 969 | } |
Eric Pouech | 92b2318 | 2001-02-23 01:12:26 +0000 | [diff] [blame^] | 970 | |
| 971 | /************************************************************************* |
| 972 | * SHAddFromPropSheetExtArray [SHELL32] |
| 973 | */ |
| 974 | DWORD WINAPI SHAddFromPropSheetExtArray(DWORD a, DWORD b, DWORD c) |
| 975 | { |
| 976 | FIXME("(%08lx,%08lx,%08lx)stub\n", a, b, c); |
| 977 | return 0; |
| 978 | } |
| 979 | |
| 980 | /************************************************************************* |
| 981 | * SHCreatePropSheetExtArray [SHELL32] |
| 982 | */ |
| 983 | DWORD WINAPI SHCreatePropSheetExtArray(DWORD a, LPCSTR b, DWORD c) |
| 984 | { |
| 985 | FIXME("(%08lx,%s,%08lx)stub\n", a, debugstr_a(b), c); |
| 986 | return 0; |
| 987 | } |
| 988 | |
| 989 | /************************************************************************* |
| 990 | * SHReplaceFromPropSheetExtArray [SHELL] |
| 991 | */ |
| 992 | DWORD WINAPI SHReplaceFromPropSheetExtArray(DWORD a, DWORD b, DWORD c, DWORD d) |
| 993 | { |
| 994 | FIXME("(%08lx,%08lx,%08lx,%08lx)stub\n", a, b, c, d); |
| 995 | return 0; |
| 996 | } |
| 997 | |
| 998 | /************************************************************************* |
| 999 | * SHDestroyPropSheetExtArray [SHELL32] |
| 1000 | */ |
| 1001 | DWORD WINAPI SHDestroyPropSheetExtArray(DWORD a) |
| 1002 | { |
| 1003 | FIXME("(%08lx)stub\n", a); |
| 1004 | return 0; |
| 1005 | } |