reshuffling of dlls
[reactos.git] / reactos / dll / win32 / shell32 / shell32_main.c
1 /*
2 * Shell basics
3 *
4 * Copyright 1998 Marcus Meissner
5 * Copyright 1998 Juergen Schmied (jsch) * <juergen.schmied@metronet.de>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22 #include "config.h"
23
24 #include <stdlib.h>
25 #include <string.h>
26 #include <stdarg.h>
27 #include <stdio.h>
28
29 #define COBJMACROS
30
31 #include "windef.h"
32 #include "winbase.h"
33 #include "winerror.h"
34 #include "winreg.h"
35 #include "dlgs.h"
36 #include "shellapi.h"
37 #include "winuser.h"
38 #include "wingdi.h"
39 #include "shlobj.h"
40 #include "shlguid.h"
41 #include "shlwapi.h"
42
43 #include "undocshell.h"
44 #include "pidl.h"
45 #include "shell32_main.h"
46 #include "version.h"
47 #include "shresdef.h"
48
49 #include "wine/debug.h"
50 #include "wine/unicode.h"
51
52 WINE_DEFAULT_DEBUG_CHANNEL(shell);
53
54 extern const char * const SHELL_Authors[];
55
56 #define MORE_DEBUG 1
57 /*************************************************************************
58 * CommandLineToArgvW [SHELL32.@]
59 *
60 * We must interpret the quotes in the command line to rebuild the argv
61 * array correctly:
62 * - arguments are separated by spaces or tabs
63 * - quotes serve as optional argument delimiters
64 * '"a b"' -> 'a b'
65 * - escaped quotes must be converted back to '"'
66 * '\"' -> '"'
67 * - an odd number of '\'s followed by '"' correspond to half that number
68 * of '\' followed by a '"' (extension of the above)
69 * '\\\"' -> '\"'
70 * '\\\\\"' -> '\\"'
71 * - an even number of '\'s followed by a '"' correspond to half that number
72 * of '\', plus a regular quote serving as an argument delimiter (which
73 * means it does not appear in the result)
74 * 'a\\"b c"' -> 'a\b c'
75 * 'a\\\\"b c"' -> 'a\\b c'
76 * - '\' that are not followed by a '"' are copied literally
77 * 'a\b' -> 'a\b'
78 * 'a\\b' -> 'a\\b'
79 *
80 * Note:
81 * '\t' == 0x0009
82 * ' ' == 0x0020
83 * '"' == 0x0022
84 * '\\' == 0x005c
85 */
86 LPWSTR* WINAPI CommandLineToArgvW(LPCWSTR lpCmdline, int* numargs)
87 {
88 DWORD argc;
89 HGLOBAL hargv;
90 LPWSTR *argv;
91 LPCWSTR cs;
92 LPWSTR arg,s,d;
93 LPWSTR cmdline;
94 int in_quotes,bcount;
95
96 if (*lpCmdline==0)
97 {
98 /* Return the path to the executable */
99 DWORD len, size=16;
100
101 hargv=GlobalAlloc(size, 0);
102 argv=GlobalLock(hargv);
103 for (;;)
104 {
105 len = GetModuleFileNameW(0, (LPWSTR)(argv+1), size-sizeof(LPWSTR));
106 if (!len)
107 {
108 GlobalFree(hargv);
109 return NULL;
110 }
111 if (len < size) break;
112 size*=2;
113 hargv=GlobalReAlloc(hargv, size, 0);
114 argv=GlobalLock(hargv);
115 }
116 argv[0]=(LPWSTR)(argv+1);
117 if (numargs)
118 *numargs=2;
119
120 return argv;
121 }
122
123 /* to get a writeable copy */
124 argc=0;
125 bcount=0;
126 in_quotes=0;
127 cs=lpCmdline;
128 while (1)
129 {
130 if (*cs==0 || ((*cs==0x0009 || *cs==0x0020) && !in_quotes))
131 {
132 /* space */
133 argc++;
134 /* skip the remaining spaces */
135 while (*cs==0x0009 || *cs==0x0020) {
136 cs++;
137 }
138 if (*cs==0)
139 break;
140 bcount=0;
141 continue;
142 }
143 else if (*cs==0x005c)
144 {
145 /* '\', count them */
146 bcount++;
147 }
148 else if ((*cs==0x0022) && ((bcount & 1)==0))
149 {
150 /* unescaped '"' */
151 in_quotes=!in_quotes;
152 bcount=0;
153 }
154 else
155 {
156 /* a regular character */
157 bcount=0;
158 }
159 cs++;
160 }
161 /* Allocate in a single lump, the string array, and the strings that go with it.
162 * This way the caller can make a single GlobalFree call to free both, as per MSDN.
163 */
164 hargv=GlobalAlloc(0, argc*sizeof(LPWSTR)+(strlenW(lpCmdline)+1)*sizeof(WCHAR));
165 argv=GlobalLock(hargv);
166 if (!argv)
167 return NULL;
168 cmdline=(LPWSTR)(argv+argc);
169 strcpyW(cmdline, lpCmdline);
170
171 argc=0;
172 bcount=0;
173 in_quotes=0;
174 arg=d=s=cmdline;
175 while (*s)
176 {
177 if ((*s==0x0009 || *s==0x0020) && !in_quotes)
178 {
179 /* Close the argument and copy it */
180 *d=0;
181 argv[argc++]=arg;
182
183 /* skip the remaining spaces */
184 do {
185 s++;
186 } while (*s==0x0009 || *s==0x0020);
187
188 /* Start with a new argument */
189 arg=d=s;
190 bcount=0;
191 }
192 else if (*s==0x005c)
193 {
194 /* '\\' */
195 *d++=*s++;
196 bcount++;
197 }
198 else if (*s==0x0022)
199 {
200 /* '"' */
201 if ((bcount & 1)==0)
202 {
203 /* Preceded by an even number of '\', this is half that
204 * number of '\', plus a quote which we erase.
205 */
206 d-=bcount/2;
207 in_quotes=!in_quotes;
208 s++;
209 }
210 else
211 {
212 /* Preceded by an odd number of '\', this is half that
213 * number of '\' followed by a '"'
214 */
215 d=d-bcount/2-1;
216 *d++='"';
217 s++;
218 }
219 bcount=0;
220 }
221 else
222 {
223 /* a regular character */
224 *d++=*s++;
225 bcount=0;
226 }
227 }
228 if (*arg)
229 {
230 *d='\0';
231 argv[argc++]=arg;
232 }
233 if (numargs)
234 *numargs=argc;
235
236 return argv;
237 }
238
239 static DWORD shgfi_get_exe_type(LPCWSTR szFullPath)
240 {
241 BOOL status = FALSE;
242 HANDLE hfile;
243 DWORD BinaryType;
244 IMAGE_DOS_HEADER mz_header;
245 IMAGE_NT_HEADERS nt;
246 DWORD len;
247 char magic[4];
248
249 status = GetBinaryTypeW (szFullPath, &BinaryType);
250 if (!status)
251 return 0;
252 if (BinaryType == SCS_DOS_BINARY || BinaryType == SCS_PIF_BINARY)
253 return 0x4d5a;
254
255 hfile = CreateFileW( szFullPath, GENERIC_READ, FILE_SHARE_READ,
256 NULL, OPEN_EXISTING, 0, 0 );
257 if ( hfile == INVALID_HANDLE_VALUE )
258 return 0;
259
260 /*
261 * The next section is adapted from MODULE_GetBinaryType, as we need
262 * to examine the image header to get OS and version information. We
263 * know from calling GetBinaryTypeA that the image is valid and either
264 * an NE or PE, so much error handling can be omitted.
265 * Seek to the start of the file and read the header information.
266 */
267
268 SetFilePointer( hfile, 0, NULL, SEEK_SET );
269 ReadFile( hfile, &mz_header, sizeof(mz_header), &len, NULL );
270
271 SetFilePointer( hfile, mz_header.e_lfanew, NULL, SEEK_SET );
272 ReadFile( hfile, magic, sizeof(magic), &len, NULL );
273 if ( *(DWORD*)magic == IMAGE_NT_SIGNATURE )
274 {
275 SetFilePointer( hfile, mz_header.e_lfanew, NULL, SEEK_SET );
276 ReadFile( hfile, &nt, sizeof(nt), &len, NULL );
277 CloseHandle( hfile );
278 if (nt.OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI)
279 {
280 return IMAGE_NT_SIGNATURE |
281 (nt.OptionalHeader.MajorSubsystemVersion << 24) |
282 (nt.OptionalHeader.MinorSubsystemVersion << 16);
283 }
284 return IMAGE_NT_SIGNATURE;
285 }
286 else if ( *(WORD*)magic == IMAGE_OS2_SIGNATURE )
287 {
288 IMAGE_OS2_HEADER ne;
289 SetFilePointer( hfile, mz_header.e_lfanew, NULL, SEEK_SET );
290 ReadFile( hfile, &ne, sizeof(ne), &len, NULL );
291 CloseHandle( hfile );
292 if (ne.ne_exetyp == 2)
293 return IMAGE_OS2_SIGNATURE | (ne.ne_expver << 16);
294 return 0;
295 }
296 CloseHandle( hfile );
297 return 0;
298 }
299
300 /*************************************************************************
301 * SHELL_IsShortcut [internal]
302 *
303 * Decide if an item id list points to a shell shortcut
304 */
305 BOOL SHELL_IsShortcut(LPCITEMIDLIST pidlLast)
306 {
307 char szTemp[MAX_PATH];
308 HKEY keyCls;
309 BOOL ret = FALSE;
310
311 if (_ILGetExtension(pidlLast, szTemp, MAX_PATH) &&
312 HCR_MapTypeToValueA(szTemp, szTemp, MAX_PATH, TRUE))
313 {
314 if (ERROR_SUCCESS == RegOpenKeyExA(HKEY_CLASSES_ROOT, szTemp, 0, KEY_QUERY_VALUE, &keyCls))
315 {
316 if (ERROR_SUCCESS == RegQueryValueExA(keyCls, "IsShortcut", NULL, NULL, NULL, NULL))
317 ret = TRUE;
318
319 RegCloseKey(keyCls);
320 }
321 }
322
323 return ret;
324 }
325
326 #define SHGFI_KNOWN_FLAGS \
327 (SHGFI_SMALLICON | SHGFI_OPENICON | SHGFI_SHELLICONSIZE | SHGFI_PIDL | \
328 SHGFI_USEFILEATTRIBUTES | SHGFI_ADDOVERLAYS | SHGFI_OVERLAYINDEX | \
329 SHGFI_ICON | SHGFI_DISPLAYNAME | SHGFI_TYPENAME | SHGFI_ATTRIBUTES | \
330 SHGFI_ICONLOCATION | SHGFI_EXETYPE | SHGFI_SYSICONINDEX | \
331 SHGFI_LINKOVERLAY | SHGFI_SELECTED | SHGFI_ATTR_SPECIFIED)
332
333 /*************************************************************************
334 * SHGetFileInfoW [SHELL32.@]
335 *
336 */
337 DWORD_PTR WINAPI SHGetFileInfoW(LPCWSTR path,DWORD dwFileAttributes,
338 SHFILEINFOW *psfi, UINT sizeofpsfi, UINT flags )
339 {
340 WCHAR szLocation[MAX_PATH], szFullPath[MAX_PATH];
341 int iIndex;
342 DWORD_PTR ret = TRUE;
343 DWORD dwAttributes = 0;
344 IShellFolder * psfParent = NULL;
345 IExtractIconW * pei = NULL;
346 LPITEMIDLIST pidlLast = NULL, pidl = NULL;
347 HRESULT hr = S_OK;
348 BOOL IconNotYetLoaded=TRUE;
349 UINT uGilFlags = 0;
350
351 TRACE("%s fattr=0x%lx sfi=%p(attr=0x%08lx) size=0x%x flags=0x%x\n",
352 (flags & SHGFI_PIDL)? "pidl" : debugstr_w(path), dwFileAttributes,
353 psfi, psfi->dwAttributes, sizeofpsfi, flags);
354
355 if ( (flags & SHGFI_USEFILEATTRIBUTES) &&
356 (flags & (SHGFI_ATTRIBUTES|SHGFI_EXETYPE|SHGFI_PIDL)))
357 return FALSE;
358
359 /* windows initializes this values regardless of the flags */
360 if (psfi != NULL)
361 {
362 psfi->szDisplayName[0] = '\0';
363 psfi->szTypeName[0] = '\0';
364 psfi->iIcon = 0;
365 }
366
367 if (!(flags & SHGFI_PIDL))
368 {
369 /* SHGetFileInfo should work with absolute and relative paths */
370 if (PathIsRelativeW(path))
371 {
372 GetCurrentDirectoryW(MAX_PATH, szLocation);
373 PathCombineW(szFullPath, szLocation, path);
374 }
375 else
376 {
377 lstrcpynW(szFullPath, path, MAX_PATH);
378 }
379 }
380
381 if (flags & SHGFI_EXETYPE)
382 {
383 if (flags != SHGFI_EXETYPE)
384 return 0;
385 return shgfi_get_exe_type(szFullPath);
386 }
387
388 /*
389 * psfi is NULL normally to query EXE type. If it is NULL, none of the
390 * below makes sense anyway. Windows allows this and just returns FALSE
391 */
392 if (psfi == NULL)
393 return FALSE;
394
395 /*
396 * translate the path into a pidl only when SHGFI_USEFILEATTRIBUTES
397 * is not specified.
398 * The pidl functions fail on not existing file names
399 */
400
401 if (flags & SHGFI_PIDL)
402 {
403 pidl = ILClone((LPCITEMIDLIST)path);
404 }
405 else if (!(flags & SHGFI_USEFILEATTRIBUTES))
406 {
407 hr = SHILCreateFromPathW(szFullPath, &pidl, &dwAttributes);
408 }
409
410 if ((flags & SHGFI_PIDL) || !(flags & SHGFI_USEFILEATTRIBUTES))
411 {
412 /* get the parent shellfolder */
413 if (pidl)
414 {
415 hr = SHBindToParent( pidl, &IID_IShellFolder, (LPVOID*)&psfParent,
416 (LPCITEMIDLIST*)&pidlLast );
417 if (SUCCEEDED(hr))
418 pidlLast = ILClone(pidlLast);
419 ILFree(pidl);
420 }
421 else
422 {
423 ERR("pidl is null!\n");
424 return FALSE;
425 }
426 }
427
428 /* get the attributes of the child */
429 if (SUCCEEDED(hr) && (flags & SHGFI_ATTRIBUTES))
430 {
431 if (!(flags & SHGFI_ATTR_SPECIFIED))
432 {
433 psfi->dwAttributes = 0xffffffff;
434 }
435 IShellFolder_GetAttributesOf( psfParent, 1, (LPCITEMIDLIST*)&pidlLast,
436 &(psfi->dwAttributes) );
437 }
438
439 /* get the displayname */
440 if (SUCCEEDED(hr) && (flags & SHGFI_DISPLAYNAME))
441 {
442 if (flags & SHGFI_USEFILEATTRIBUTES)
443 {
444 lstrcpyW (psfi->szDisplayName, PathFindFileNameW(szFullPath));
445 }
446 else
447 {
448 STRRET str;
449 hr = IShellFolder_GetDisplayNameOf( psfParent, pidlLast,
450 SHGDN_INFOLDER, &str);
451 StrRetToStrNW (psfi->szDisplayName, MAX_PATH, &str, pidlLast);
452 }
453 }
454
455 /* get the type name */
456 if (SUCCEEDED(hr) && (flags & SHGFI_TYPENAME))
457 {
458 static const WCHAR szFile[] = { 'F','i','l','e',0 };
459 static const WCHAR szDashFile[] = { '-','f','i','l','e',0 };
460
461 if (!(flags & SHGFI_USEFILEATTRIBUTES))
462 {
463 char ftype[80];
464
465 _ILGetFileType(pidlLast, ftype, 80);
466 MultiByteToWideChar(CP_ACP, 0, ftype, -1, psfi->szTypeName, 80 );
467 }
468 else
469 {
470 if (dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
471 strcatW (psfi->szTypeName, szFile);
472 else
473 {
474 WCHAR sTemp[64];
475
476 lstrcpyW(sTemp,PathFindExtensionW(szFullPath));
477 if (!( HCR_MapTypeToValueW(sTemp, sTemp, 64, TRUE) &&
478 HCR_MapTypeToValueW(sTemp, psfi->szTypeName, 80, FALSE )))
479 {
480 lstrcpynW (psfi->szTypeName, sTemp, 64);
481 strcatW (psfi->szTypeName, szDashFile);
482 }
483 }
484 }
485 }
486
487 /* ### icons ###*/
488 if (flags & SHGFI_OPENICON)
489 uGilFlags |= GIL_OPENICON;
490
491 if (flags & SHGFI_LINKOVERLAY)
492 uGilFlags |= GIL_FORSHORTCUT;
493 else if ((flags&SHGFI_ADDOVERLAYS) ||
494 (flags&(SHGFI_ICON|SHGFI_SMALLICON))==SHGFI_ICON)
495 {
496 if (SHELL_IsShortcut(pidlLast))
497 uGilFlags |= GIL_FORSHORTCUT;
498 }
499
500 if (flags & SHGFI_OVERLAYINDEX)
501 FIXME("SHGFI_OVERLAYINDEX unhandled\n");
502
503 if (flags & SHGFI_SELECTED)
504 FIXME("set icon to selected, stub\n");
505
506 if (flags & SHGFI_SHELLICONSIZE)
507 FIXME("set icon to shell size, stub\n");
508
509 /* get the iconlocation */
510 if (SUCCEEDED(hr) && (flags & SHGFI_ICONLOCATION ))
511 {
512 UINT uDummy,uFlags;
513
514 hr = IShellFolder_GetUIObjectOf(psfParent, 0, 1,
515 (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconA,
516 &uDummy, (LPVOID*)&pei);
517 if (SUCCEEDED(hr))
518 {
519 hr = IExtractIconW_GetIconLocation(pei, uGilFlags,
520 szLocation, MAX_PATH, &iIndex, &uFlags);
521 psfi->iIcon = iIndex;
522
523 if (!(uFlags & GIL_NOTFILENAME))
524 lstrcpyW (psfi->szDisplayName, szLocation);
525 else
526 ret = FALSE;
527
528 IExtractIconA_Release(pei);
529 }
530 }
531
532 /* get icon index (or load icon)*/
533 if (SUCCEEDED(hr) && (flags & (SHGFI_ICON | SHGFI_SYSICONINDEX)))
534 {
535 if (flags & SHGFI_USEFILEATTRIBUTES)
536 {
537 WCHAR sTemp [MAX_PATH];
538 WCHAR * szExt;
539 DWORD dwNr=0;
540
541 lstrcpynW(sTemp, szFullPath, MAX_PATH);
542
543 if (dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
544 psfi->iIcon = SIC_GetIconIndex(swShell32Name, -IDI_SHELL_FOLDER, 0);
545 else
546 {
547 static const WCHAR p1W[] = {'%','1',0};
548
549 psfi->iIcon = 0;
550 szExt = (LPWSTR) PathFindExtensionW(sTemp);
551 if ( szExt &&
552 HCR_MapTypeToValueW(szExt, sTemp, MAX_PATH, TRUE) &&
553 HCR_GetDefaultIconW(sTemp, sTemp, MAX_PATH, &dwNr))
554 {
555 if (!lstrcmpW(p1W,sTemp)) /* icon is in the file */
556 strcpyW(sTemp, szFullPath);
557
558 if (flags & SHGFI_SYSICONINDEX)
559 {
560 psfi->iIcon = SIC_GetIconIndex(sTemp,dwNr,0);
561 if (psfi->iIcon == -1)
562 psfi->iIcon = 0;
563 }
564 else
565 {
566 IconNotYetLoaded=FALSE;
567 if (flags & SHGFI_SMALLICON)
568 PrivateExtractIconsW( sTemp,dwNr,
569 GetSystemMetrics( SM_CXSMICON ),
570 GetSystemMetrics( SM_CYSMICON ),
571 &psfi->hIcon, 0, 1, 0);
572 else
573 PrivateExtractIconsW( sTemp, dwNr,
574 GetSystemMetrics( SM_CXICON),
575 GetSystemMetrics( SM_CYICON),
576 &psfi->hIcon, 0, 1, 0);
577 psfi->iIcon = dwNr;
578 }
579 }
580 }
581 }
582 else
583 {
584 if (!(PidlToSicIndex(psfParent, pidlLast, !(flags & SHGFI_SMALLICON),
585 uGilFlags, &(psfi->iIcon))))
586 {
587 ret = FALSE;
588 }
589 }
590 if (ret)
591 {
592 if (flags & SHGFI_SMALLICON)
593 ret = (DWORD_PTR) ShellSmallIconList;
594 else
595 ret = (DWORD_PTR) ShellBigIconList;
596 }
597 }
598
599 /* icon handle */
600 if (SUCCEEDED(hr) && (flags & SHGFI_ICON) && IconNotYetLoaded)
601 {
602 if (flags & SHGFI_SMALLICON)
603 psfi->hIcon = ImageList_GetIcon( ShellSmallIconList, psfi->iIcon, ILD_NORMAL);
604 else
605 psfi->hIcon = ImageList_GetIcon( ShellBigIconList, psfi->iIcon, ILD_NORMAL);
606 }
607
608 if (flags & ~SHGFI_KNOWN_FLAGS)
609 FIXME("unknown flags %08x\n", flags & ~SHGFI_KNOWN_FLAGS);
610
611 if (psfParent)
612 IShellFolder_Release(psfParent);
613
614 if (hr != S_OK)
615 ret = FALSE;
616
617 if (pidlLast)
618 SHFree(pidlLast);
619
620 #ifdef MORE_DEBUG
621 TRACE ("icon=%p index=0x%08x attr=0x%08lx name=%s type=%s ret=0x%08lx\n",
622 psfi->hIcon, psfi->iIcon, psfi->dwAttributes,
623 debugstr_w(psfi->szDisplayName), debugstr_w(psfi->szTypeName), ret);
624 #endif
625
626 return ret;
627 }
628
629 /*************************************************************************
630 * SHGetFileInfoA [SHELL32.@]
631 */
632 DWORD_PTR WINAPI SHGetFileInfoA(LPCSTR path,DWORD dwFileAttributes,
633 SHFILEINFOA *psfi, UINT sizeofpsfi,
634 UINT flags )
635 {
636 INT len;
637 LPWSTR temppath;
638 DWORD ret;
639 SHFILEINFOW temppsfi;
640
641 if (flags & SHGFI_PIDL)
642 {
643 /* path contains a pidl */
644 temppath = (LPWSTR) path;
645 }
646 else
647 {
648 len = MultiByteToWideChar(CP_ACP, 0, path, -1, NULL, 0);
649 temppath = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
650 MultiByteToWideChar(CP_ACP, 0, path, -1, temppath, len);
651 }
652
653 if (psfi && (flags & SHGFI_ATTR_SPECIFIED))
654 temppsfi.dwAttributes=psfi->dwAttributes;
655
656 if (psfi == NULL)
657 ret = SHGetFileInfoW(temppath, dwFileAttributes, NULL, sizeof(temppsfi), flags);
658 else
659 ret = SHGetFileInfoW(temppath, dwFileAttributes, &temppsfi, sizeof(temppsfi), flags);
660
661 if (psfi)
662 {
663 if(flags & SHGFI_ICON)
664 psfi->hIcon=temppsfi.hIcon;
665 if(flags & (SHGFI_SYSICONINDEX|SHGFI_ICON|SHGFI_ICONLOCATION))
666 psfi->iIcon=temppsfi.iIcon;
667 if(flags & SHGFI_ATTRIBUTES)
668 psfi->dwAttributes=temppsfi.dwAttributes;
669 if(flags & (SHGFI_DISPLAYNAME|SHGFI_ICONLOCATION))
670 {
671 WideCharToMultiByte(CP_ACP, 0, temppsfi.szDisplayName, -1,
672 psfi->szDisplayName, sizeof(psfi->szDisplayName), NULL, NULL);
673 }
674 if(flags & SHGFI_TYPENAME)
675 {
676 WideCharToMultiByte(CP_ACP, 0, temppsfi.szTypeName, -1,
677 psfi->szTypeName, sizeof(psfi->szTypeName), NULL, NULL);
678 }
679 }
680
681 if (!(flags & SHGFI_PIDL))
682 HeapFree(GetProcessHeap(), 0, temppath);
683
684 return ret;
685 }
686
687 /*************************************************************************
688 * DuplicateIcon [SHELL32.@]
689 */
690 HICON WINAPI DuplicateIcon( HINSTANCE hInstance, HICON hIcon)
691 {
692 ICONINFO IconInfo;
693 HICON hDupIcon = 0;
694
695 TRACE("%p %p\n", hInstance, hIcon);
696
697 if (GetIconInfo(hIcon, &IconInfo))
698 {
699 hDupIcon = CreateIconIndirect(&IconInfo);
700
701 /* clean up hbmMask and hbmColor */
702 DeleteObject(IconInfo.hbmMask);
703 DeleteObject(IconInfo.hbmColor);
704 }
705
706 return hDupIcon;
707 }
708
709 /*************************************************************************
710 * ExtractIconA [SHELL32.@]
711 */
712 HICON WINAPI ExtractIconA(HINSTANCE hInstance, LPCSTR lpszFile, UINT nIconIndex)
713 {
714 HICON ret;
715 INT len = MultiByteToWideChar(CP_ACP, 0, lpszFile, -1, NULL, 0);
716 LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
717
718 TRACE("%p %s %d\n", hInstance, lpszFile, nIconIndex);
719
720 MultiByteToWideChar(CP_ACP, 0, lpszFile, -1, lpwstrFile, len);
721 ret = ExtractIconW(hInstance, lpwstrFile, nIconIndex);
722 HeapFree(GetProcessHeap(), 0, lpwstrFile);
723
724 return ret;
725 }
726
727 /*************************************************************************
728 * ExtractIconW [SHELL32.@]
729 */
730 HICON WINAPI ExtractIconW(HINSTANCE hInstance, LPCWSTR lpszFile, UINT nIconIndex)
731 {
732 HICON hIcon = NULL;
733 UINT ret;
734 UINT cx = GetSystemMetrics(SM_CXICON), cy = GetSystemMetrics(SM_CYICON);
735
736 TRACE("%p %s %d\n", hInstance, debugstr_w(lpszFile), nIconIndex);
737
738 if (nIconIndex == 0xFFFFFFFF)
739 {
740 ret = PrivateExtractIconsW(lpszFile, 0, cx, cy, NULL, NULL, 0, LR_DEFAULTCOLOR);
741 if (ret != 0xFFFFFFFF && ret)
742 return (HICON)(UINT_PTR)ret;
743 return NULL;
744 }
745 else
746 ret = PrivateExtractIconsW(lpszFile, nIconIndex, cx, cy, &hIcon, NULL, 1, LR_DEFAULTCOLOR);
747
748 if (ret == 0xFFFFFFFF)
749 return (HICON)1;
750 else if (ret > 0 && hIcon)
751 return hIcon;
752
753 return NULL;
754 }
755
756 /*************************************************************************
757 * Printer_LoadIconsW [SHELL32.205]
758 */
759 VOID WINAPI Printer_LoadIconsW(LPCWSTR wsPrinterName, HICON * pLargeIcon, HICON * pSmallIcon)
760 {
761 INT iconindex=IDI_SHELL_PRINTER;
762
763 TRACE("(%s, %p, %p)\n", debugstr_w(wsPrinterName), pLargeIcon, pSmallIcon);
764
765 /* We should check if wsPrinterName is
766 1. the Default Printer or not
767 2. connected or not
768 3. a Local Printer or a Network-Printer
769 and use different Icons
770 */
771 if((wsPrinterName != NULL) && (wsPrinterName[0] != 0))
772 {
773 FIXME("(select Icon by PrinterName %s not implemented)\n", debugstr_w(wsPrinterName));
774 }
775
776 if(pLargeIcon != NULL)
777 *pLargeIcon = LoadImageW(shell32_hInstance,
778 (LPCWSTR) MAKEINTRESOURCE(iconindex), IMAGE_ICON,
779 0, 0, LR_DEFAULTCOLOR|LR_DEFAULTSIZE);
780
781 if(pSmallIcon != NULL)
782 *pSmallIcon = LoadImageW(shell32_hInstance,
783 (LPCWSTR) MAKEINTRESOURCE(iconindex), IMAGE_ICON,
784 16, 16, LR_DEFAULTCOLOR);
785 }
786
787 /*************************************************************************
788 * Printers_RegisterWindowW [SHELL32.213]
789 * used by "printui.dll":
790 * find the Window of the given Type for the specific Printer and
791 * return the already existent hwnd or open a new window
792 */
793 BOOL WINAPI Printers_RegisterWindowW(LPCWSTR wsPrinter, DWORD dwType,
794 HANDLE * phClassPidl, HWND * phwnd)
795 {
796 FIXME("(%s, %lx, %p (%p), %p (%p)) stub!\n", debugstr_w(wsPrinter), dwType,
797 phClassPidl, (phClassPidl != NULL) ? *(phClassPidl) : NULL,
798 phwnd, (phwnd != NULL) ? *(phwnd) : NULL);
799
800 return FALSE;
801 }
802
803 /*************************************************************************
804 * Printers_UnregisterWindow [SHELL32.214]
805 */
806 VOID WINAPI Printers_UnregisterWindow(HANDLE hClassPidl, HWND hwnd)
807 {
808 FIXME("(%p, %p) stub!\n", hClassPidl, hwnd);
809 }
810
811 /*************************************************************************/
812
813 typedef struct
814 {
815 LPCWSTR szApp;
816 LPCWSTR szOtherStuff;
817 HICON hIcon;
818 HFONT hFont;
819 } ABOUT_INFO;
820
821 #define IDC_STATIC_TEXT1 100
822 #define IDC_STATIC_TEXT2 101
823 #define IDC_LISTBOX 99
824 #define IDC_WINE_TEXT 98
825
826 #define DROP_FIELD_TOP (-15)
827 #define DROP_FIELD_HEIGHT 15
828
829 static BOOL __get_dropline( HWND hWnd, LPRECT lprect )
830 {
831 HWND hWndCtl = GetDlgItem(hWnd, IDC_WINE_TEXT);
832
833 if( hWndCtl )
834 {
835 GetWindowRect( hWndCtl, lprect );
836 MapWindowPoints( 0, hWnd, (LPPOINT)lprect, 2 );
837 lprect->bottom = (lprect->top += DROP_FIELD_TOP);
838 return TRUE;
839 }
840 return FALSE;
841 }
842
843 /*************************************************************************
844 * SHAppBarMessage [SHELL32.@]
845 */
846 UINT WINAPI SHAppBarMessage(DWORD msg, PAPPBARDATA data)
847 {
848 int width=data->rc.right - data->rc.left;
849 int height=data->rc.bottom - data->rc.top;
850 RECT rec=data->rc;
851
852 switch (msg)
853 {
854 case ABM_GETSTATE:
855 return ABS_ALWAYSONTOP | ABS_AUTOHIDE;
856 case ABM_GETTASKBARPOS:
857 GetWindowRect(data->hWnd, &rec);
858 data->rc=rec;
859 return TRUE;
860 case ABM_ACTIVATE:
861 SetActiveWindow(data->hWnd);
862 return TRUE;
863 case ABM_GETAUTOHIDEBAR:
864 data->hWnd=GetActiveWindow();
865 return TRUE;
866 case ABM_NEW:
867 SetWindowPos(data->hWnd,HWND_TOP,rec.left,rec.top,
868 width,height,SWP_SHOWWINDOW);
869 return TRUE;
870 case ABM_QUERYPOS:
871 GetWindowRect(data->hWnd, &(data->rc));
872 return TRUE;
873 case ABM_REMOVE:
874 FIXME("ABM_REMOVE broken\n");
875 /* FIXME: this is wrong; should it be DestroyWindow instead? */
876 /*CloseHandle(data->hWnd);*/
877 return TRUE;
878 case ABM_SETAUTOHIDEBAR:
879 SetWindowPos(data->hWnd,HWND_TOP,rec.left+1000,rec.top,
880 width,height,SWP_SHOWWINDOW);
881 return TRUE;
882 case ABM_SETPOS:
883 data->uEdge=(ABE_RIGHT | ABE_LEFT);
884 SetWindowPos(data->hWnd,HWND_TOP,data->rc.left,data->rc.top,
885 width,height,SWP_SHOWWINDOW);
886 return TRUE;
887 case ABM_WINDOWPOSCHANGED:
888 return TRUE;
889 }
890 return FALSE;
891 }
892
893 /*************************************************************************
894 * SHHelpShortcuts_RunDLLA [SHELL32.@]
895 *
896 */
897 DWORD WINAPI SHHelpShortcuts_RunDLLA(DWORD dwArg1, DWORD dwArg2, DWORD dwArg3, DWORD dwArg4)
898 {
899 FIXME("(%lx, %lx, %lx, %lx) stub!\n", dwArg1, dwArg2, dwArg3, dwArg4);
900 return 0;
901 }
902
903 /*************************************************************************
904 * SHHelpShortcuts_RunDLLA [SHELL32.@]
905 *
906 */
907 DWORD WINAPI SHHelpShortcuts_RunDLLW(DWORD dwArg1, DWORD dwArg2, DWORD dwArg3, DWORD dwArg4)
908 {
909 FIXME("(%lx, %lx, %lx, %lx) stub!\n", dwArg1, dwArg2, dwArg3, dwArg4);
910 return 0;
911 }
912
913 /*************************************************************************
914 * SHLoadInProc [SHELL32.@]
915 * Create an instance of specified object class from within
916 * the shell process and release it immediately
917 */
918 HRESULT WINAPI SHLoadInProc (REFCLSID rclsid)
919 {
920 void *ptr = NULL;
921
922 TRACE("%s\n", debugstr_guid(rclsid));
923
924 CoCreateInstance(rclsid, NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown,&ptr);
925 if(ptr)
926 {
927 IUnknown * pUnk = ptr;
928 IUnknown_Release(pUnk);
929 return NOERROR;
930 }
931 return DISP_E_MEMBERNOTFOUND;
932 }
933
934 /*************************************************************************
935 * AboutDlgProc (internal)
936 */
937 INT_PTR CALLBACK AboutDlgProc( HWND hWnd, UINT msg, WPARAM wParam,
938 LPARAM lParam )
939 {
940 HWND hWndCtl;
941
942 TRACE("\n");
943
944 switch(msg)
945 {
946 case WM_INITDIALOG:
947 {
948 ABOUT_INFO *info = (ABOUT_INFO *)lParam;
949 WCHAR Template[512], AppTitle[512];
950
951 if (info)
952 {
953 const char* const *pstr = SHELL_Authors;
954 SendDlgItemMessageW(hWnd, stc1, STM_SETICON,(WPARAM)info->hIcon, 0);
955 GetWindowTextW( hWnd, Template, sizeof(Template)/sizeof(WCHAR) );
956 sprintfW( AppTitle, Template, info->szApp );
957 SetWindowTextW( hWnd, AppTitle );
958 SetWindowTextW( GetDlgItem(hWnd, IDC_STATIC_TEXT1), info->szApp );
959 SetWindowTextW( GetDlgItem(hWnd, IDC_STATIC_TEXT2), info->szOtherStuff );
960 hWndCtl = GetDlgItem(hWnd, IDC_LISTBOX);
961 SendMessageW( hWndCtl, WM_SETREDRAW, 0, 0 );
962 SendMessageW( hWndCtl, WM_SETFONT, (WPARAM)info->hFont, 0 );
963 while (*pstr)
964 {
965 WCHAR name[64];
966 /* authors list is in iso-8859-1 format */
967 MultiByteToWideChar( 28591, 0, *pstr, -1, name, sizeof(name)/sizeof(WCHAR) );
968 SendMessageW( hWndCtl, LB_ADDSTRING, (WPARAM)-1, (LPARAM)name );
969 pstr++;
970 }
971 SendMessageW( hWndCtl, WM_SETREDRAW, 1, 0 );
972 }
973 }
974 return 1;
975
976 case WM_PAINT:
977 {
978 RECT rect;
979 PAINTSTRUCT ps;
980 HDC hDC = BeginPaint( hWnd, &ps );
981
982 if (__get_dropline( hWnd, &rect ))
983 {
984 SelectObject( hDC, GetStockObject( BLACK_PEN ) );
985 MoveToEx( hDC, rect.left, rect.top, NULL );
986 LineTo( hDC, rect.right, rect.bottom );
987 }
988 EndPaint( hWnd, &ps );
989 }
990 break;
991
992 case WM_COMMAND:
993 if (wParam == IDOK || wParam == IDCANCEL)
994 {
995 EndDialog(hWnd, TRUE);
996 return TRUE;
997 }
998 break;
999 case WM_CLOSE:
1000 EndDialog(hWnd, TRUE);
1001 break;
1002 }
1003
1004 return 0;
1005 }
1006
1007
1008 /*************************************************************************
1009 * ShellAboutA [SHELL32.288]
1010 */
1011 BOOL WINAPI ShellAboutA( HWND hWnd, LPCSTR szApp, LPCSTR szOtherStuff, HICON hIcon )
1012 {
1013 BOOL ret;
1014 LPWSTR appW = NULL, otherW = NULL;
1015 int len;
1016
1017 if (szApp)
1018 {
1019 len = MultiByteToWideChar(CP_ACP, 0, szApp, -1, NULL, 0);
1020 appW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
1021 MultiByteToWideChar(CP_ACP, 0, szApp, -1, appW, len);
1022 }
1023 if (szOtherStuff)
1024 {
1025 len = MultiByteToWideChar(CP_ACP, 0, szOtherStuff, -1, NULL, 0);
1026 otherW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
1027 MultiByteToWideChar(CP_ACP, 0, szOtherStuff, -1, otherW, len);
1028 }
1029
1030 ret = ShellAboutW(hWnd, appW, otherW, hIcon);
1031
1032 HeapFree(GetProcessHeap(), 0, otherW);
1033 HeapFree(GetProcessHeap(), 0, appW);
1034 return ret;
1035 }
1036
1037
1038 /*************************************************************************
1039 * ShellAboutW [SHELL32.289]
1040 */
1041 BOOL WINAPI ShellAboutW( HWND hWnd, LPCWSTR szApp, LPCWSTR szOtherStuff,
1042 HICON hIcon )
1043 {
1044 ABOUT_INFO info;
1045 LOGFONTW logFont;
1046 HRSRC hRes;
1047 LPVOID template;
1048 BOOL bRet;
1049 static const WCHAR wszSHELL_ABOUT_MSGBOX[] =
1050 {'S','H','E','L','L','_','A','B','O','U','T','_','M','S','G','B','O','X',0};
1051
1052 TRACE("\n");
1053
1054 if(!(hRes = FindResourceW(shell32_hInstance, wszSHELL_ABOUT_MSGBOX, (LPWSTR)RT_DIALOG)))
1055 return FALSE;
1056 if(!(template = (LPVOID)LoadResource(shell32_hInstance, hRes)))
1057 return FALSE;
1058 info.szApp = szApp;
1059 info.szOtherStuff = szOtherStuff;
1060 info.hIcon = hIcon ? hIcon : LoadIconW( 0, (LPWSTR)IDI_WINLOGO );
1061
1062 SystemParametersInfoW( SPI_GETICONTITLELOGFONT, 0, &logFont, 0 );
1063 info.hFont = CreateFontIndirectW( &logFont );
1064
1065 bRet = DialogBoxIndirectParamW((HINSTANCE)GetWindowLongPtrW( hWnd, GWLP_HINSTANCE ),
1066 template, hWnd, AboutDlgProc, (LPARAM)&info );
1067 DeleteObject(info.hFont);
1068 return bRet;
1069 }
1070
1071 /*************************************************************************
1072 * FreeIconList (SHELL32.@)
1073 */
1074 void WINAPI FreeIconList( DWORD dw )
1075 {
1076 FIXME("%lx: stub\n",dw);
1077 }
1078
1079
1080 /***********************************************************************
1081 * DllGetVersion [SHELL32.@]
1082 *
1083 * Retrieves version information of the 'SHELL32.DLL'
1084 *
1085 * PARAMS
1086 * pdvi [O] pointer to version information structure.
1087 *
1088 * RETURNS
1089 * Success: S_OK
1090 * Failure: E_INVALIDARG
1091 *
1092 * NOTES
1093 * Returns version of a shell32.dll from IE4.01 SP1.
1094 */
1095
1096 HRESULT WINAPI DllGetVersion (DLLVERSIONINFO *pdvi)
1097 {
1098 /* FIXME: shouldn't these values come from the version resource? */
1099 if (pdvi->cbSize == sizeof(DLLVERSIONINFO) ||
1100 pdvi->cbSize == sizeof(DLLVERSIONINFO2))
1101 {
1102 pdvi->dwMajorVersion = WINE_FILEVERSION_MAJOR;
1103 pdvi->dwMinorVersion = WINE_FILEVERSION_MINOR;
1104 pdvi->dwBuildNumber = WINE_FILEVERSION_BUILD;
1105 pdvi->dwPlatformID = WINE_FILEVERSION_PLATFORMID;
1106 if (pdvi->cbSize == sizeof(DLLVERSIONINFO2))
1107 {
1108 DLLVERSIONINFO2 *pdvi2 = (DLLVERSIONINFO2 *)pdvi;
1109
1110 pdvi2->dwFlags = 0;
1111 pdvi2->ullVersion = MAKEDLLVERULL(WINE_FILEVERSION_MAJOR,
1112 WINE_FILEVERSION_MINOR,
1113 WINE_FILEVERSION_BUILD,
1114 WINE_FILEVERSION_PLATFORMID);
1115 }
1116 TRACE("%lu.%lu.%lu.%lu\n",
1117 pdvi->dwMajorVersion, pdvi->dwMinorVersion,
1118 pdvi->dwBuildNumber, pdvi->dwPlatformID);
1119 return S_OK;
1120 }
1121 else
1122 {
1123 WARN("wrong DLLVERSIONINFO size from app\n");
1124 return E_INVALIDARG;
1125 }
1126 }
1127
1128 /*************************************************************************
1129 * global variables of the shell32.dll
1130 * all are once per process
1131 *
1132 */
1133 HINSTANCE shell32_hInstance = 0;
1134 HIMAGELIST ShellSmallIconList = 0;
1135 HIMAGELIST ShellBigIconList = 0;
1136
1137
1138 /*************************************************************************
1139 * SHELL32 DllMain
1140 *
1141 * NOTES
1142 * calling oleinitialize here breaks sone apps.
1143 */
1144 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
1145 {
1146 TRACE("%p 0x%lx %p\n", hinstDLL, fdwReason, fImpLoad);
1147
1148 switch (fdwReason)
1149 {
1150 case DLL_PROCESS_ATTACH:
1151 shell32_hInstance = hinstDLL;
1152 DisableThreadLibraryCalls(shell32_hInstance);
1153
1154 /* get full path to this DLL for IExtractIconW_fnGetIconLocation() */
1155 GetModuleFileNameW(hinstDLL, swShell32Name, MAX_PATH);
1156 swShell32Name[MAX_PATH - 1] = '\0';
1157
1158 InitCommonControlsEx(NULL);
1159
1160 SIC_Initialize();
1161 InitChangeNotifications();
1162 break;
1163
1164 case DLL_PROCESS_DETACH:
1165 shell32_hInstance = 0;
1166 SIC_Destroy();
1167 FreeChangeNotifications();
1168 break;
1169 }
1170 return TRUE;
1171 }
1172
1173 /*************************************************************************
1174 * DllInstall [SHELL32.@]
1175 *
1176 * PARAMETERS
1177 *
1178 * BOOL bInstall - TRUE for install, FALSE for uninstall
1179 * LPCWSTR pszCmdLine - command line (unused by shell32?)
1180 */
1181
1182 HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
1183 {
1184 FIXME("%s %s: stub\n", bInstall ? "TRUE":"FALSE", debugstr_w(cmdline));
1185 return S_OK; /* indicate success */
1186 }
1187
1188 /***********************************************************************
1189 * DllCanUnloadNow (SHELL32.@)
1190 */
1191 HRESULT WINAPI DllCanUnloadNow(void)
1192 {
1193 FIXME("stub\n");
1194 return S_FALSE;
1195 }