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