blob: ff0661f3efd010b28c95405fae92792b1dd64a82 [file] [log] [blame]
Alexandre Julliarde658d821997-11-30 17:45:40 +00001/*
Juergen Schmiedba28ba11999-01-23 14:12:48 +00002 * The parameters of many functions changes between different OS versions
3 * (NT uses Unicode strings, 95 uses ASCII strings)
Alexandre Julliarde658d821997-11-30 17:45:40 +00004 *
Alexandre Julliarde658d821997-11-30 17:45:40 +00005 * Copyright 1997 Marcus Meissner
Alexandre Julliard767e6f61998-08-09 12:47:43 +00006 * 1998 Jürgen Schmied
Alexandre Julliarde658d821997-11-30 17:45:40 +00007 */
Alexandre Julliarde658d821997-11-30 17:45:40 +00008#include <string.h>
Alexandre Julliard383da682000-02-10 22:15:21 +00009#include <stdio.h>
Alexandre Julliarda845b881998-06-01 10:44:35 +000010#include "winerror.h"
Marcus Meissner317af321999-02-17 13:51:06 +000011#include "winreg.h"
Alexandre Julliarda099a551999-06-12 15:45:58 +000012#include "debugtools.h"
Juergen Schmiede8d281d1998-10-24 09:22:57 +000013#include "winnls.h"
Juergen Schmiedba28ba11999-01-23 14:12:48 +000014#include "heap.h"
15
Juergen Schmied28613d31999-04-22 10:11:04 +000016#include "shellapi.h"
Alexandre Julliardb08cb172000-08-03 04:19:24 +000017#include "shlguid.h"
Juergen Schmiedba28ba11999-01-23 14:12:48 +000018#include "shlobj.h"
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000019#include "shell32_main.h"
Juergen Schmied43577ec1999-07-25 12:22:57 +000020#include "wine/undocshell.h"
Alexandre Julliarde658d821997-11-30 17:45:40 +000021
Alexandre Julliard383da682000-02-10 22:15:21 +000022DEFAULT_DEBUG_CHANNEL(shell);
Patrik Stridvallb4b9fae1999-04-19 14:56:29 +000023
Alexandre Julliarde658d821997-11-30 17:45:40 +000024/*************************************************************************
Juergen Schmied85b92932000-04-28 20:21:49 +000025 * ParseFieldA [internal]
Alexandre Julliard642d3131998-07-12 19:29:36 +000026 *
Juergen Schmiedeabe82b2000-02-26 18:45:09 +000027 * copys a field from a ',' delimited string
28 *
29 * first field is nField = 1
Alexandre Julliard44ed71f1997-12-21 19:17:50 +000030 */
Juergen Schmied85b92932000-04-28 20:21:49 +000031DWORD WINAPI ParseFieldA(
32 LPCSTR src,
33 DWORD nField,
34 LPSTR dst,
35 DWORD len)
Juergen Schmiedeabe82b2000-02-26 18:45:09 +000036{
37 WARN("('%s',0x%08lx,%p,%ld) semi-stub.\n",src,nField,dst,len);
Juergen Schmied07e0d941998-12-01 08:55:13 +000038
39 if (!src || !src[0] || !dst || !len)
40 return 0;
41
Juergen Schmiedeabe82b2000-02-26 18:45:09 +000042 /* skip n fields delimited by ',' */
43 while (nField > 1)
44 {
45 if (*src=='\0') return FALSE;
46 if (*(src++)==',') nField--;
Juergen Schmied07e0d941998-12-01 08:55:13 +000047 }
48
Juergen Schmiedeabe82b2000-02-26 18:45:09 +000049 /* copy part till the next ',' to dst */
50 while ( *src!='\0' && *src!=',' && (len--)>0 ) *(dst++)=*(src++);
51
52 /* finalize the string */
Juergen Schmied07e0d941998-12-01 08:55:13 +000053 *dst=0x0;
54
55 return TRUE;
Alexandre Julliard44ed71f1997-12-21 19:17:50 +000056}
57
58/*************************************************************************
Juergen Schmied85b92932000-04-28 20:21:49 +000059 * ParseFieldW [internal]
60 *
61 * copys a field from a ',' delimited string
Alexandre Julliard642d3131998-07-12 19:29:36 +000062 *
Juergen Schmied85b92932000-04-28 20:21:49 +000063 * first field is nField = 1
Alexandre Julliard44ed71f1997-12-21 19:17:50 +000064 */
Juergen Schmied85b92932000-04-28 20:21:49 +000065DWORD 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 */
75DWORD WINAPI ParseFieldAW(LPCVOID src, DWORD nField, LPVOID dst, DWORD len)
76{
Alexandre Julliardd586dc92000-08-14 14:35:01 +000077 if (SHELL_OsIsUnicode())
Juergen Schmied85b92932000-04-28 20:21:49 +000078 return ParseFieldW(src, nField, dst, len);
79 return ParseFieldA(src, nField, dst, len);
Alexandre Julliard44ed71f1997-12-21 19:17:50 +000080}
81
82/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +000083 * GetFileNameFromBrowse [SHELL32.63]
Alexandre Julliard642d3131998-07-12 19:29:36 +000084 *
Alexandre Julliard44ed71f1997-12-21 19:17:50 +000085 */
Juergen Schmied85b92932000-04-28 20:21:49 +000086BOOL 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 Julliard44ed71f1997-12-21 19:17:50 +000099 /* puts up a Open Dialog and requests input into targetbuf */
100 /* OFN_HIDEREADONLY|OFN_NOCHANGEDIR|OFN_FILEMUSTEXIST|OFN_unknown */
Alexandre Julliardd586dc92000-08-14 14:35:01 +0000101 strcpy(lpstrFile,"x:\\dummy.exe");
Alexandre Julliard44ed71f1997-12-21 19:17:50 +0000102 return 1;
103}
104
105/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000106 * SHGetSettings [SHELL32.68]
Alexandre Julliard642d3131998-07-12 19:29:36 +0000107 *
Juergen Schmiedae2d9a71999-04-10 16:41:50 +0000108 * NOTES
109 * the registry path are for win98 (tested)
110 * and possibly are the same in nt40
Alexandre Julliard44ed71f1997-12-21 19:17:50 +0000111 */
Mike McCormack46bc5342000-09-18 01:40:13 +0000112VOID WINAPI SHGetSettings(LPSHELLFLAGSTATE lpsfs, DWORD dwMask)
Juergen Schmiedae2d9a71999-04-10 16:41:50 +0000113{
114 HKEY hKey;
115 DWORD dwData;
116 DWORD dwDataSize = sizeof (DWORD);
117
Mike McCormack46bc5342000-09-18 01:40:13 +0000118 TRACE("(%p 0x%08lx)\n",lpsfs,dwMask);
Juergen Schmiedae2d9a71999-04-10 16:41:50 +0000119
Juergen Schmied55c0bca1999-04-22 09:18:33 +0000120 if (RegCreateKeyExA(HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
Juergen Schmiedae2d9a71999-04-10 16:41:50 +0000121 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 Julliarda099a551999-06-12 15:45:58 +0000158 TRACE("-- 0x%04x\n", *(WORD*)lpsfs);
Alexandre Julliard44ed71f1997-12-21 19:17:50 +0000159}
Alexandre Julliard44ed71f1997-12-21 19:17:50 +0000160
161/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000162 * SHShellFolderView_Message [SHELL32.73]
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000163 *
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 Julliard829fe321998-07-26 14:27:39 +0000170 * 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 Schmied85b92932000-04-28 20:21:49 +0000176int 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 Julliarde658d821997-11-30 17:45:40 +0000183}
184
185/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000186 * RegisterShellHook [SHELL32.181]
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000187 *
188 * PARAMS
189 * hwnd [I] window handle
190 * y [I] flag ????
191 *
192 * NOTES
193 * exported by ordinal
194 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000195BOOL WINAPI RegisterShellHook(
196 HWND hWnd,
197 DWORD dwType)
198{
199 FIXME("(0x%08x,0x%08lx):stub.\n",hWnd, dwType);
200 return TRUE;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000201}
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000202/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000203 * ShellMessageBoxW [SHELL32.182]
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000204 *
205 * Format and output errormessage.
206 *
Juergen Schmied879a6fe1999-02-09 14:16:44 +0000207 * idText resource ID of title or LPSTR
208 * idTitle resource ID of title or LPSTR
209 *
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000210 * NOTES
211 * exported by ordinal
212 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000213int WINAPIV ShellMessageBoxW(
214 HINSTANCE hInstance,
215 HWND hWnd,
216 LPCWSTR lpText,
217 LPCWSTR lpCaption,
218 UINT uType,
219 ...)
220{
Eric Pouech353962d2000-10-15 00:31:23 +0000221 WCHAR szText[100],szTitle[100];
222 LPCWSTR pszText = szText, pszTitle = szTitle, pszTemp;
Juergen Schmied85b92932000-04-28 20:21:49 +0000223 va_list args;
Eric Pouech353962d2000-10-15 00:31:23 +0000224 int ret;
225
Juergen Schmied85b92932000-04-28 20:21:49 +0000226 va_start(args, uType);
227 /* wvsprintfA(buf,fmt, args); */
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000228
Juergen Schmied85b92932000-04-28 20:21:49 +0000229 TRACE("(%08lx,%08lx,%p,%p,%08x)\n",
230 (DWORD)hInstance,(DWORD)hWnd,lpText,lpCaption,uType);
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000231
Juergen Schmied85b92932000-04-28 20:21:49 +0000232 if (!HIWORD(lpCaption))
Eric Pouech353962d2000-10-15 00:31:23 +0000233 LoadStringW(hInstance, (DWORD)lpCaption, szTitle, sizeof(szTitle)/sizeof(szTitle[0]));
Juergen Schmied879a6fe1999-02-09 14:16:44 +0000234 else
Juergen Schmied85b92932000-04-28 20:21:49 +0000235 pszTitle = lpCaption;
Juergen Schmied879a6fe1999-02-09 14:16:44 +0000236
Juergen Schmied85b92932000-04-28 20:21:49 +0000237 if (!HIWORD(lpText))
Eric Pouech353962d2000-10-15 00:31:23 +0000238 LoadStringW(hInstance, (DWORD)lpText, szText, sizeof(szText)/sizeof(szText[0]));
Juergen Schmied879a6fe1999-02-09 14:16:44 +0000239 else
Juergen Schmied85b92932000-04-28 20:21:49 +0000240 pszText = lpText;
Juergen Schmied879a6fe1999-02-09 14:16:44 +0000241
Eric Pouech353962d2000-10-15 00:31:23 +0000242 FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_STRING,
243 pszText, 0, 0, (LPWSTR)&pszTemp, 0, &args);
Patrik Stridvall95bcd512000-04-29 14:29:05 +0000244
245 va_end(args);
246
Eric Pouech353962d2000-10-15 00:31:23 +0000247 ret = MessageBoxW(hWnd,pszTemp,pszTitle,uType);
248 LocalFree((HLOCAL)pszTemp);
249 return ret;
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000250}
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000251
252/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000253 * ShellMessageBoxA [SHELL32.183]
Alexandre Julliarde658d821997-11-30 17:45:40 +0000254 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000255int WINAPIV ShellMessageBoxA(
256 HINSTANCE hInstance,
257 HWND hWnd,
258 LPCSTR lpText,
259 LPCSTR lpCaption,
260 UINT uType,
261 ...)
Ian Schmidtcdff5431999-09-28 13:04:58 +0000262{
Eric Pouech353962d2000-10-15 00:31:23 +0000263 char szText[100],szTitle[100];
264 LPCSTR pszText = szText, pszTitle = szTitle, pszTemp;
Juergen Schmied85b92932000-04-28 20:21:49 +0000265 va_list args;
Eric Pouech353962d2000-10-15 00:31:23 +0000266 int ret;
267
Juergen Schmied85b92932000-04-28 20:21:49 +0000268 va_start(args, uType);
269 /* wvsprintfA(buf,fmt, args); */
Ian Schmidtcdff5431999-09-28 13:04:58 +0000270
Juergen Schmied85b92932000-04-28 20:21:49 +0000271 TRACE("(%08lx,%08lx,%p,%p,%08x)\n",
272 (DWORD)hInstance,(DWORD)hWnd,lpText,lpCaption,uType);
Ian Schmidtcdff5431999-09-28 13:04:58 +0000273
Juergen Schmied85b92932000-04-28 20:21:49 +0000274 if (!HIWORD(lpCaption))
Eric Pouech353962d2000-10-15 00:31:23 +0000275 LoadStringA(hInstance, (DWORD)lpCaption, szTitle, sizeof(szTitle));
Juergen Schmied85b92932000-04-28 20:21:49 +0000276 else
277 pszTitle = lpCaption;
Ian Schmidtcdff5431999-09-28 13:04:58 +0000278
Juergen Schmied85b92932000-04-28 20:21:49 +0000279 if (!HIWORD(lpText))
Eric Pouech353962d2000-10-15 00:31:23 +0000280 LoadStringA(hInstance, (DWORD)lpText, szText, sizeof(szText));
Juergen Schmied85b92932000-04-28 20:21:49 +0000281 else
282 pszText = lpText;
Ian Schmidtcdff5431999-09-28 13:04:58 +0000283
Eric Pouech353962d2000-10-15 00:31:23 +0000284 FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_STRING,
285 pszText, 0, 0, (LPSTR)&pszTemp, 0, &args);
Patrik Stridvall95bcd512000-04-29 14:29:05 +0000286
287 va_end(args);
288
Eric Pouech353962d2000-10-15 00:31:23 +0000289 ret = MessageBoxA(hWnd,pszTemp,pszTitle,uType);
290 LocalFree((HLOCAL)pszTemp);
291 return ret;
Ian Schmidtcdff5431999-09-28 13:04:58 +0000292}
293
294/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000295 * SHFree [SHELL32.195]
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000296 *
297 * NOTES
Alexandre Julliard642d3131998-07-12 19:29:36 +0000298 * free_ptr() - frees memory using IMalloc
299 * exported by ordinal
Alexandre Julliard44ed71f1997-12-21 19:17:50 +0000300 */
Juergen Schmied0d18aad2000-06-01 23:25:44 +0000301#define MEM_DEBUG 0
Juergen Schmied85b92932000-04-28 20:21:49 +0000302void WINAPI SHFree(LPVOID x)
Juergen Schmied43577ec1999-07-25 12:22:57 +0000303{
Juergen Schmiedafe53ed1999-11-23 22:31:18 +0000304#if MEM_DEBUG
Patrik Stridvall0ee98cc2000-02-26 13:17:55 +0000305 WORD len = *(LPWORD)((LPBYTE)x-2);
Juergen Schmied43577ec1999-07-25 12:22:57 +0000306
Patrik Stridvall0ee98cc2000-02-26 13:17:55 +0000307 if ( *(LPWORD)((LPBYTE)x+len) != 0x7384)
Juergen Schmied43577ec1999-07-25 12:22:57 +0000308 ERR("MAGIC2!\n");
Juergen Schmiedeac255c1999-08-15 14:31:36 +0000309
Patrik Stridvall0ee98cc2000-02-26 13:17:55 +0000310 if ( (*(LPWORD)((LPBYTE)x-4)) != 0x8271)
Juergen Schmiedeac255c1999-08-15 14:31:36 +0000311 ERR("MAGIC1!\n");
312 else
Patrik Stridvall0ee98cc2000-02-26 13:17:55 +0000313 memset((LPBYTE)x-4, 0xde, len+6);
Juergen Schmiedeac255c1999-08-15 14:31:36 +0000314
315 TRACE("%p len=%u\n",x, len);
316
Patrik Stridvall0ee98cc2000-02-26 13:17:55 +0000317 x = (LPBYTE) x - 4;
Juergen Schmiedeac255c1999-08-15 14:31:36 +0000318#else
319 TRACE("%p\n",x);
Juergen Schmied43577ec1999-07-25 12:22:57 +0000320#endif
Juergen Schmied85b92932000-04-28 20:21:49 +0000321 HeapFree(GetProcessHeap(), 0, x);
Alexandre Julliard44ed71f1997-12-21 19:17:50 +0000322}
323
324/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000325 * SHAlloc [SHELL32.196]
Alexandre Julliard642d3131998-07-12 19:29:36 +0000326 *
327 * NOTES
328 * void *task_alloc(DWORD len), uses SHMalloc allocator
329 * exported by ordinal
Alexandre Julliarde658d821997-11-30 17:45:40 +0000330 */
Juergen Schmied43577ec1999-07-25 12:22:57 +0000331LPVOID WINAPI SHAlloc(DWORD len)
332{
Juergen Schmiedeac255c1999-08-15 14:31:36 +0000333 LPBYTE ret;
334
Juergen Schmiedafe53ed1999-11-23 22:31:18 +0000335#if MEM_DEBUG
Juergen Schmiedeac255c1999-08-15 14:31:36 +0000336 ret = (LPVOID) HeapAlloc(GetProcessHeap(),0,len+6);
337#else
338 ret = (LPVOID) HeapAlloc(GetProcessHeap(),0,len);
Juergen Schmied43577ec1999-07-25 12:22:57 +0000339#endif
340
Juergen Schmiedafe53ed1999-11-23 22:31:18 +0000341#if MEM_DEBUG
Juergen Schmiedeac255c1999-08-15 14:31:36 +0000342 *(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 Schmied43577ec1999-07-25 12:22:57 +0000348 TRACE("%lu bytes at %p\n",len, ret);
349 return (LPVOID)ret;
Alexandre Julliarde658d821997-11-30 17:45:40 +0000350}
351
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000352/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000353 * SHRegisterDragDrop [SHELL32.86]
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000354 *
355 * NOTES
Alexandre Julliard642d3131998-07-12 19:29:36 +0000356 * exported by ordinal
Alexandre Julliarda845b881998-06-01 10:44:35 +0000357 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000358HRESULT WINAPI SHRegisterDragDrop(
359 HWND hWnd,
360 LPDROPTARGET pDropTarget)
Juergen Schmiedb18f3d61999-04-01 10:23:09 +0000361{
Alexandre Julliarda099a551999-06-12 15:45:58 +0000362 FIXME("(0x%08x,%p):stub.\n", hWnd, pDropTarget);
Alexandre Julliarde1e75372000-04-24 17:17:49 +0000363 if (GetShellOle()) return pRegisterDragDrop(hWnd, pDropTarget);
364 return 0;
Alexandre Julliarda845b881998-06-01 10:44:35 +0000365}
366
367/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000368 * SHRevokeDragDrop [SHELL32.87]
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000369 *
370 * NOTES
Alexandre Julliard642d3131998-07-12 19:29:36 +0000371 * exported by ordinal
Alexandre Julliarda845b881998-06-01 10:44:35 +0000372 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000373HRESULT WINAPI SHRevokeDragDrop(HWND hWnd)
374{
375 FIXME("(0x%08x):stub.\n",hWnd);
Alexandre Julliarda845b881998-06-01 10:44:35 +0000376 return 0;
377}
378
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000379/*************************************************************************
Eric Kohl45f88861999-06-26 11:55:15 +0000380 * SHDoDragDrop [SHELL32.88]
381 *
382 * NOTES
383 * exported by ordinal
384 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000385HRESULT WINAPI SHDoDragDrop(
386 HWND hWnd,
387 LPDATAOBJECT lpDataObject,
388 LPDROPSOURCE lpDropSource,
389 DWORD dwOKEffect,
390 LPDWORD pdwEffect)
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000391{
Juergen Schmied85b92932000-04-28 20:21:49 +0000392 FIXME("(0x%04x %p %p 0x%08lx %p):stub.\n",
393 hWnd, lpDataObject, lpDropSource, dwOKEffect, pdwEffect);
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000394 return 0;
395}
396
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000397/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000398 * ArrangeWindows [SHELL32.184]
Alexandre Julliard642d3131998-07-12 19:29:36 +0000399 *
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000400 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000401WORD WINAPI ArrangeWindows(
402 HWND hwndParent,
403 DWORD dwReserved,
404 LPCRECT lpRect,
405 WORD cKids,
406 CONST HWND * lpKids)
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000407{
Juergen Schmied85b92932000-04-28 20:21:49 +0000408 FIXME("(0x%08x 0x%08lx %p 0x%04x %p):stub.\n",
409 hwndParent, dwReserved, lpRect, cKids, lpKids);
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000410 return 0;
411}
412
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000413/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000414 * SignalFileOpen [SHELL32.103]
Alexandre Julliard642d3131998-07-12 19:29:36 +0000415 *
416 * NOTES
417 * exported by ordinal
418 */
419DWORD WINAPI
420SignalFileOpen (DWORD dwParam1)
421{
Alexandre Julliarda099a551999-06-12 15:45:58 +0000422 FIXME("(0x%08lx):stub.\n", dwParam1);
Alexandre Julliard642d3131998-07-12 19:29:36 +0000423
Alexandre Julliardebfc0fe1998-06-28 18:40:26 +0000424 return 0;
425}
426
Alexandre Julliard829fe321998-07-26 14:27:39 +0000427/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000428 * SHAddToRecentDocs [SHELL32.234]
Alexandre Julliard829fe321998-07-26 14:27:39 +0000429 *
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000430 * PARAMETERS
431 * uFlags [IN] SHARD_PATH or SHARD_PIDL
432 * pv [IN] string or pidl, NULL clears the list
433 *
Alexandre Julliard829fe321998-07-26 14:27:39 +0000434 * NOTES
435 * exported by name
436 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000437DWORD WINAPI SHAddToRecentDocs (UINT uFlags,LPCVOID pv)
Alexandre Julliard829fe321998-07-26 14:27:39 +0000438{ if (SHARD_PIDL==uFlags)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000439 { FIXME("(0x%08x,pidl=%p):stub.\n", uFlags,pv);
Alexandre Julliard829fe321998-07-26 14:27:39 +0000440 }
441 else
Alexandre Julliarda099a551999-06-12 15:45:58 +0000442 { FIXME("(0x%08x,%s):stub.\n", uFlags,(char*)pv);
Alexandre Julliard829fe321998-07-26 14:27:39 +0000443 }
444 return 0;
445}
Juergen Schmied6acd0591998-10-11 15:50:14 +0000446/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000447 * SHCreateShellFolderViewEx [SHELL32.174]
Alexandre Julliard829fe321998-07-26 14:27:39 +0000448 *
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000449 * NOTES
450 * see IShellFolder::CreateViewObject
Alexandre Julliard829fe321998-07-26 14:27:39 +0000451 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000452HRESULT WINAPI SHCreateShellFolderViewEx(
Juergen Schmied85b92932000-04-28 20:21:49 +0000453 LPCSHELLFOLDERVIEWINFO psvcbi, /*[in ] shelltemplate struct*/
454 LPSHELLVIEW* ppv) /*[out] IShellView pointer*/
Juergen Schmied43577ec1999-07-25 12:22:57 +0000455{
456 IShellView * psf;
457 HRESULT hRes;
458
Juergen Schmied85b92932000-04-28 20:21:49 +0000459 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 Schmied43577ec1999-07-25 12:22:57 +0000462
Juergen Schmied85b92932000-04-28 20:21:49 +0000463 psf = IShellView_Constructor(psvcbi->pshf);
Juergen Schmied43577ec1999-07-25 12:22:57 +0000464
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 Julliard829fe321998-07-26 14:27:39 +0000473}
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000474/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000475 * SHWinHelp [SHELL32.127]
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000476 *
477 */
478HRESULT WINAPI SHWinHelp (DWORD v, DWORD w, DWORD x, DWORD z)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000479{ FIXME("0x%08lx 0x%08lx 0x%08lx 0x%08lx stub\n",v,w,x,z);
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000480 return 0;
481}
482/*************************************************************************
Eric Kohla8ea46b1998-10-11 13:25:51 +0000483 * SHRunControlPanel [SHELL32.161]
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000484 *
485 */
Eric Kohla8ea46b1998-10-11 13:25:51 +0000486HRESULT WINAPI SHRunControlPanel (DWORD x, DWORD z)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000487{ FIXME("0x%08lx 0x%08lx stub\n",x,z);
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000488 return 0;
489}
490/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000491 * ShellExecuteEx [SHELL32.291]
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000492 *
493 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000494BOOL WINAPI ShellExecuteExAW (LPVOID sei)
Alexandre Julliardd586dc92000-08-14 14:35:01 +0000495{ if (SHELL_OsIsUnicode())
Alexandre Julliarda3960291999-02-26 11:11:13 +0000496 return ShellExecuteExW (sei);
497 return ShellExecuteExA (sei);
Juergen Schmied72b76d11998-11-15 13:28:00 +0000498}
499/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000500 * ShellExecuteExA [SHELL32.292]
Juergen Schmied72b76d11998-11-15 13:28:00 +0000501 *
Juergen Schmiedeabe82b2000-02-26 18:45:09 +0000502 * 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 Schmied72b76d11998-11-15 13:28:00 +0000511 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000512BOOL WINAPI ShellExecuteExA (LPSHELLEXECUTEINFOA sei)
Juergen Schmied98f6cf01998-12-11 10:58:48 +0000513{ CHAR szApplicationName[MAX_PATH],szCommandline[MAX_PATH],szPidl[20];
514 LPSTR pos;
515 int gap, len;
Juergen Schmiedeabe82b2000-02-26 18:45:09 +0000516 STARTUPINFOA startup;
517 PROCESS_INFORMATION info;
Juergen Schmied98f6cf01998-12-11 10:58:48 +0000518
Juergen Schmied37fe75b1999-07-10 11:54:17 +0000519 WARN("mask=0x%08lx hwnd=0x%04x verb=%s file=%s parm=%s dir=%s show=0x%08x class=%s incomplete\n",
Juergen Schmied98f6cf01998-12-11 10:58:48 +0000520 sei->fMask, sei->hwnd, sei->lpVerb, sei->lpFile,
Juergen Schmied37fe75b1999-07-10 11:54:17 +0000521 sei->lpParameters, sei->lpDirectory, sei->nShow,
522 (sei->fMask & SEE_MASK_CLASSNAME) ? sei->lpClass : "not used");
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000523
Juergen Schmied98f6cf01998-12-11 10:58:48 +0000524 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 Schmiedeabe82b2000-02-26 18:45:09 +0000533 SEE_MASK_CONNECTNETDRV | SEE_MASK_FLAG_DDEWAIT |
Juergen Schmied98f6cf01998-12-11 10:58:48 +0000534 SEE_MASK_DOENVSUBST | SEE_MASK_FLAG_NO_UI | SEE_MASK_UNICODE |
535 SEE_MASK_NO_CONSOLE | SEE_MASK_ASYNCOK | SEE_MASK_HMONITOR ))
Juergen Schmiedeabe82b2000-02-26 18:45:09 +0000536 {
537 FIXME("flags ignored: 0x%08lx\n", sei->fMask);
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000538 }
Juergen Schmiedeabe82b2000-02-26 18:45:09 +0000539
540 /* launch a document by fileclass like 'Wordpad.Document.1' */
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000541 if (sei->fMask & SEE_MASK_CLASSNAME)
Juergen Schmiedeabe82b2000-02-26 18:45:09 +0000542 {
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 Julliarda0d77311998-09-13 16:32:00 +0000547 }
Juergen Schmied98f6cf01998-12-11 10:58:48 +0000548
549 /* process the IDList */
550 if ( (sei->fMask & SEE_MASK_INVOKEIDLIST) == SEE_MASK_INVOKEIDLIST) /*0x0c*/
Juergen Schmiedeabe82b2000-02-26 18:45:09 +0000551 {
552 SHGetPathFromIDListA (sei->lpIDList,szApplicationName);
Alexandre Julliarda099a551999-06-12 15:45:58 +0000553 TRACE("-- idlist=%p (%s)\n", sei->lpIDList, szApplicationName);
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000554 }
Juergen Schmied98f6cf01998-12-11 10:58:48 +0000555 else
Juergen Schmiedeabe82b2000-02-26 18:45:09 +0000556 {
557 if (sei->fMask & SEE_MASK_IDLIST )
558 {
Juergen Schmied98f6cf01998-12-11 10:58:48 +0000559 pos = strstr(szCommandline, "%I");
560 if (pos)
Juergen Schmiedeabe82b2000-02-26 18:45:09 +0000561 {
Juergen Schmied85b92932000-04-28 20:21:49 +0000562 LPVOID pv;
Juergen Schmiedeabe82b2000-02-26 18:45:09 +0000563 HGLOBAL hmem = SHAllocShared ( sei->lpIDList, ILGetSize(sei->lpIDList), 0);
Juergen Schmied85b92932000-04-28 20:21:49 +0000564 pv = SHLockShared(hmem,0);
565 sprintf(szPidl,":%p",pv );
566 SHUnlockShared(pv);
Juergen Schmied98f6cf01998-12-11 10:58:48 +0000567
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 Schmiedeabe82b2000-02-26 18:45:09 +0000577 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 Schmied98f6cf01998-12-11 10:58:48 +0000591 }
592
Juergen Schmiedeabe82b2000-02-26 18:45:09 +0000593 sei->hInstApp = 33;
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000594
Juergen Schmiedeabe82b2000-02-26 18:45:09 +0000595 /* 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 Julliard767e6f61998-08-09 12:47:43 +0000605}
606/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000607 * ShellExecuteExW [SHELL32.293]
Juergen Schmied72b76d11998-11-15 13:28:00 +0000608 *
609 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000610BOOL WINAPI ShellExecuteExW (LPSHELLEXECUTEINFOW sei)
611{ SHELLEXECUTEINFOA seiA;
Juergen Schmiedba28ba11999-01-23 14:12:48 +0000612 DWORD ret;
Juergen Schmied72b76d11998-11-15 13:28:00 +0000613
Alexandre Julliarda099a551999-06-12 15:45:58 +0000614 TRACE("%p\n", sei);
Juergen Schmied72b76d11998-11-15 13:28:00 +0000615
Alexandre Julliarda3960291999-02-26 11:11:13 +0000616 memcpy(&seiA, sei, sizeof(SHELLEXECUTEINFOA));
Juergen Schmied72b76d11998-11-15 13:28:00 +0000617
Juergen Schmiedba28ba11999-01-23 14:12:48 +0000618 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 Julliarda3960291999-02-26 11:11:13 +0000635 ret = ShellExecuteExA(&seiA);
Juergen Schmiedba28ba11999-01-23 14:12:48 +0000636
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 Schmied72b76d11998-11-15 13:28:00 +0000644}
Juergen Schmiedba28ba11999-01-23 14:12:48 +0000645
Juergen Schmied07e0d941998-12-01 08:55:13 +0000646static LPUNKNOWN SHELL32_IExplorerInterface=0;
Juergen Schmied72b76d11998-11-15 13:28:00 +0000647/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000648 * SHSetInstanceExplorer [SHELL32.176]
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000649 *
Juergen Schmied07e0d941998-12-01 08:55:13 +0000650 * NOTES
651 * Sets the interface
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000652 */
Juergen Schmied07e0d941998-12-01 08:55:13 +0000653HRESULT WINAPI SHSetInstanceExplorer (LPUNKNOWN lpUnknown)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000654{ TRACE("%p\n", lpUnknown);
Juergen Schmied07e0d941998-12-01 08:55:13 +0000655 SHELL32_IExplorerInterface = lpUnknown;
656 return (HRESULT) lpUnknown;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000657}
658/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000659 * SHGetInstanceExplorer [SHELL32.256]
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000660 *
661 * NOTES
Juergen Schmied07e0d941998-12-01 08:55:13 +0000662 * gets the interface pointer of the explorer and a reference
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000663 */
Juergen Schmied07e0d941998-12-01 08:55:13 +0000664HRESULT WINAPI SHGetInstanceExplorer (LPUNKNOWN * lpUnknown)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000665{ TRACE("%p\n", lpUnknown);
Juergen Schmied07e0d941998-12-01 08:55:13 +0000666
667 *lpUnknown = SHELL32_IExplorerInterface;
668
669 if (!SHELL32_IExplorerInterface)
670 return E_FAIL;
671
Francois Gouget6e74ec01999-10-13 14:01:40 +0000672 IUnknown_AddRef(SHELL32_IExplorerInterface);
Juergen Schmied07e0d941998-12-01 08:55:13 +0000673 return NOERROR;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000674}
675/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000676 * SHFreeUnusedLibraries [SHELL32.123]
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000677 *
678 * NOTES
679 * exported by name
680 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000681void WINAPI SHFreeUnusedLibraries (void)
682{
683 FIXME("stub\n");
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000684}
685/*************************************************************************
Eric Kohl8d8a1231999-07-31 13:06:39 +0000686 * DAD_SetDragImage [SHELL32.136]
687 *
688 * NOTES
689 * exported by name
690 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000691BOOL WINAPI DAD_SetDragImage(
692 HIMAGELIST himlTrack,
693 LPPOINT lppt)
694{
695 FIXME("%p %p stub\n",himlTrack, lppt);
Eric Kohl8d8a1231999-07-31 13:06:39 +0000696 return 0;
697}
698/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000699 * DAD_ShowDragImage [SHELL32.137]
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000700 *
701 * NOTES
702 * exported by name
703 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000704BOOL WINAPI DAD_ShowDragImage(BOOL bShow)
705{
706 FIXME("0x%08x stub\n",bShow);
707 return 0;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000708}
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000709/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000710 * ReadCabinetState [NT 4.0:SHELL32.651]
Juergen Schmied6acd0591998-10-11 15:50:14 +0000711 *
712 */
713HRESULT WINAPI ReadCabinetState(DWORD u, DWORD v)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000714{ FIXME("0x%04lx 0x%04lx stub\n",u,v);
Juergen Schmied6acd0591998-10-11 15:50:14 +0000715 return 0;
716}
717/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000718 * WriteCabinetState [NT 4.0:SHELL32.652]
Juergen Schmied6acd0591998-10-11 15:50:14 +0000719 *
720 */
721HRESULT WINAPI WriteCabinetState(DWORD u)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000722{ FIXME("0x%04lx stub\n",u);
Juergen Schmied6acd0591998-10-11 15:50:14 +0000723 return 0;
724}
725/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000726 * FileIconInit [SHELL32.660]
Petter Reinholdtsen5a17c031998-10-13 12:49:40 +0000727 *
728 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000729BOOL WINAPI FileIconInit(BOOL bFullInit)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000730{ FIXME("(%s)\n", bFullInit ? "true" : "false");
Petter Reinholdtsen5a17c031998-10-13 12:49:40 +0000731 return 0;
732}
733/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000734 * IsUserAdmin [NT 4.0:SHELL32.680]
Juergen Schmied6acd0591998-10-11 15:50:14 +0000735 *
736 */
Juergen Schmied72b76d11998-11-15 13:28:00 +0000737HRESULT WINAPI IsUserAdmin(void)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000738{ FIXME("stub\n");
Juergen Schmied6acd0591998-10-11 15:50:14 +0000739 return TRUE;
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000740}
Patrik Stridvallfcfacb92000-03-24 20:46:04 +0000741
Eric Kohla8ea46b1998-10-11 13:25:51 +0000742/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000743 * SHAllocShared [SHELL32.520]
Juergen Schmied61013241998-10-16 15:40:20 +0000744 *
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 Julliarda3960291999-02-26 11:11:13 +0000754HGLOBAL WINAPI SHAllocShared(LPVOID psrc, DWORD size, DWORD procID)
755{ HGLOBAL hmem;
Juergen Schmied61013241998-10-16 15:40:20 +0000756 LPVOID pmem;
757
Alexandre Julliarda099a551999-06-12 15:45:58 +0000758 TRACE("ptr=%p size=0x%04lx procID=0x%04lx\n",psrc,size,procID);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000759 hmem = GlobalAlloc(GMEM_FIXED, size);
Juergen Schmied61013241998-10-16 15:40:20 +0000760 if (!hmem)
761 return 0;
762
Alexandre Julliarda3960291999-02-26 11:11:13 +0000763 pmem = GlobalLock (hmem);
Juergen Schmied61013241998-10-16 15:40:20 +0000764
765 if (! pmem)
766 return 0;
767
768 memcpy (pmem, psrc, size);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000769 GlobalUnlock(hmem);
Juergen Schmied61013241998-10-16 15:40:20 +0000770 return hmem;
771}
772/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000773 * SHLockShared [SHELL32.521]
Juergen Schmied61013241998-10-16 15:40:20 +0000774 *
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 Julliarda3960291999-02-26 11:11:13 +0000781LPVOID WINAPI SHLockShared(HANDLE hmem, DWORD procID)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000782{ TRACE("handle=0x%04x procID=0x%04lx\n",hmem,procID);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000783 return GlobalLock(hmem);
Juergen Schmied61013241998-10-16 15:40:20 +0000784}
785/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000786 * SHUnlockShared [SHELL32.522]
Juergen Schmied61013241998-10-16 15:40:20 +0000787 *
788 * NOTES
789 * parameter1 is return value from SHLockShared
790 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000791BOOL WINAPI SHUnlockShared(LPVOID pv)
792{
793 TRACE("%p\n",pv);
794 return GlobalUnlock((HANDLE)pv);
Juergen Schmied61013241998-10-16 15:40:20 +0000795}
796/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000797 * SHFreeShared [SHELL32.523]
Juergen Schmied61013241998-10-16 15:40:20 +0000798 *
799 * NOTES
800 * parameter1 is return value from SHAllocShared
801 * parameter2 is return value from GetCurrentProcessId
802 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000803BOOL WINAPI SHFreeShared(
804 HANDLE hMem,
805 DWORD pid)
806{
807 TRACE("handle=0x%04x 0x%04lx\n",hMem,pid);
808 return GlobalFree(hMem);
Juergen Schmied61013241998-10-16 15:40:20 +0000809}
810
811/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000812 * SetAppStartingCursor [SHELL32.99]
Juergen Schmied61013241998-10-16 15:40:20 +0000813 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000814HRESULT WINAPI SetAppStartingCursor(HWND u, DWORD v)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000815{ FIXME("hwnd=0x%04x 0x%04lx stub\n",u,v );
Juergen Schmied61013241998-10-16 15:40:20 +0000816 return 0;
817}
818/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000819 * SHLoadOLE [SHELL32.151]
Juergen Schmied61013241998-10-16 15:40:20 +0000820 *
821 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000822HRESULT WINAPI SHLoadOLE(DWORD u)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000823{ FIXME("0x%04lx stub\n",u);
Juergen Schmied61013241998-10-16 15:40:20 +0000824 return S_OK;
825}
826/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000827 * DriveType [SHELL32.64]
Juergen Schmied61013241998-10-16 15:40:20 +0000828 *
829 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000830HRESULT WINAPI DriveType(DWORD u)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000831{ FIXME("0x%04lx stub\n",u);
Juergen Schmied61013241998-10-16 15:40:20 +0000832 return 0;
833}
834/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000835 * SHAbortInvokeCommand [SHELL32.198]
Juergen Schmied61013241998-10-16 15:40:20 +0000836 *
837 */
Juergen Schmied72b76d11998-11-15 13:28:00 +0000838HRESULT WINAPI SHAbortInvokeCommand(void)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000839{ FIXME("stub\n");
Juergen Schmied61013241998-10-16 15:40:20 +0000840 return 1;
841}
842/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000843 * SHOutOfMemoryMessageBox [SHELL32.126]
Juergen Schmied61013241998-10-16 15:40:20 +0000844 *
845 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000846int 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 Schmied61013241998-10-16 15:40:20 +0000852 return 0;
853}
854/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000855 * SHFlushClipboard [SHELL32.121]
Eric Kohla8ea46b1998-10-11 13:25:51 +0000856 *
857 */
Juergen Schmied72b76d11998-11-15 13:28:00 +0000858HRESULT WINAPI SHFlushClipboard(void)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000859{ FIXME("stub\n");
Juergen Schmied61013241998-10-16 15:40:20 +0000860 return 1;
Eric Kohla8ea46b1998-10-11 13:25:51 +0000861}
Ulrich Czekallac8a3f7a1999-10-23 16:50:58 +0000862
Juergen Schmied72b76d11998-11-15 13:28:00 +0000863/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000864 * SHWaitForFileToOpen [SHELL32.97]
Juergen Schmied07e0d941998-12-01 08:55:13 +0000865 *
866 */
Juergen Schmied85b92932000-04-28 20:21:49 +0000867BOOL 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 Schmied07e0d941998-12-01 08:55:13 +0000873 return 0;
874}
Juergen Schmiede3042281998-12-18 14:48:20 +0000875/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000876 * Control_FillCache_RunDLL [SHELL32.8]
Juergen Schmiede3042281998-12-18 14:48:20 +0000877 *
878 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000879HRESULT WINAPI Control_FillCache_RunDLL(HWND hWnd, HANDLE hModule, DWORD w, DWORD x)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000880{ FIXME("0x%04x 0x%04x 0x%04lx 0x%04lx stub\n",hWnd, hModule,w,x);
Juergen Schmiede3042281998-12-18 14:48:20 +0000881 return 0;
882}
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000883/*************************************************************************
Juergen Schmieddd153f11999-03-13 17:10:36 +0000884 * RunDLL_CallEntry16 [SHELL32.122]
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000885 * the name is propably wrong
886 */
887HRESULT WINAPI RunDLL_CallEntry16(DWORD v, DWORD w, DWORD x, DWORD y, DWORD z)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000888{ FIXME("0x%04lx 0x%04lx 0x%04lx 0x%04lx 0x%04lx stub\n",v,w,x,y,z);
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000889 return 0;
890}
Juergen Schmiedddecd8a1999-03-25 10:55:43 +0000891
Juergen Schmiedb18f3d61999-04-01 10:23:09 +0000892/************************************************************************
893 * shell32_654 [SHELL32.654]
894 *
Juergen Schmied37fe75b1999-07-10 11:54:17 +0000895 * 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 Schmiedb18f3d61999-04-01 10:23:09 +0000899 */
Ian Schmidtbeed9831999-05-23 09:28:52 +0000900HRESULT WINAPI shell32_654 (DWORD x, DWORD y)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000901{ FIXME("0x%08lx 0x%08lx stub\n",x,y);
Juergen Schmiedddecd8a1999-03-25 10:55:43 +0000902 return 0;
903}
Juergen Schmiedb18f3d61999-04-01 10:23:09 +0000904
905/************************************************************************
906 * RLBuildListOfPaths [SHELL32.146]
907 *
908 * NOTES
909 * builds a DPA
910 */
Juergen Schmied43577ec1999-07-25 12:22:57 +0000911DWORD WINAPI RLBuildListOfPaths (void)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000912{ FIXME("stub\n");
Juergen Schmiedb18f3d61999-04-01 10:23:09 +0000913 return 0;
914}
915/************************************************************************
Juergen Schmied55c0bca1999-04-22 09:18:33 +0000916 * SHValidateUNC [SHELL32.173]
917 *
918 */
Ian Schmidt38aeff01999-05-29 10:52:00 +0000919HRESULT WINAPI SHValidateUNC (DWORD x, DWORD y, DWORD z)
Juergen Schmied37fe75b1999-07-10 11:54:17 +0000920{
921 FIXME("0x%08lx 0x%08lx 0x%08lx stub\n",x,y,z);
Juergen Schmied55c0bca1999-04-22 09:18:33 +0000922 return 0;
923}
Juergen Schmied37fe75b1999-07-10 11:54:17 +0000924
925/************************************************************************
Patrik Stridvallfcfacb92000-03-24 20:46:04 +0000926 * DoEnvironmentSubstA [SHELL32.1222]
Juergen Schmied37fe75b1999-07-10 11:54:17 +0000927 *
928 */
929HRESULT WINAPI DoEnvironmentSubstA(LPSTR x, LPSTR y)
930{
Patrik Stridvallb9050232000-05-11 21:48:28 +0000931 FIXME("(%s, %s) stub\n", debugstr_a(x), debugstr_a(y));
Juergen Schmied37fe75b1999-07-10 11:54:17 +0000932 return 0;
933}
934
Patrik Stridvallfcfacb92000-03-24 20:46:04 +0000935/************************************************************************
936 * DoEnvironmentSubstW [SHELL32.1223]
937 *
938 */
Juergen Schmied37fe75b1999-07-10 11:54:17 +0000939HRESULT WINAPI DoEnvironmentSubstW(LPWSTR x, LPWSTR y)
940{
Patrik Stridvallb9050232000-05-11 21:48:28 +0000941 FIXME("(%s, %s): stub\n", debugstr_w(x), debugstr_w(y));
Juergen Schmied37fe75b1999-07-10 11:54:17 +0000942 return 0;
943}
944
Patrik Stridvallfcfacb92000-03-24 20:46:04 +0000945/************************************************************************
946 * DoEnvironmentSubst [SHELL32.53]
947 *
948 */
Juergen Schmied37fe75b1999-07-10 11:54:17 +0000949HRESULT WINAPI DoEnvironmentSubstAW(LPVOID x, LPVOID y)
950{
Alexandre Julliardd586dc92000-08-14 14:35:01 +0000951 if (SHELL_OsIsUnicode())
Juergen Schmied37fe75b1999-07-10 11:54:17 +0000952 return DoEnvironmentSubstW(x, y);
953 return DoEnvironmentSubstA(x, y);
954}
Eric Kohl8d8a1231999-07-31 13:06:39 +0000955
Ian Schmidtcdff5431999-09-28 13:04:58 +0000956/*************************************************************************
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
964BOOL WINAPI shell32_243(DWORD a, DWORD b)
965{
966 return FALSE;
967}
Ian Schmidtace09a71999-10-25 15:36:39 +0000968
Juergen Schmied0d18aad2000-06-01 23:25:44 +0000969/*************************************************************************
Juergen Schmied0d18aad2000-06-01 23:25:44 +0000970 * SHELL32_714 [SHELL32]
971 */
972DWORD WINAPI SHELL32_714(LPVOID x)
973{
974 FIXME("(%s)stub\n", debugstr_w(x));
975 return 0;
976}