msi: Make msi_dialog_dup_property return a copy of the property if the property is...
[wine] / dlls / 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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_IExtractIconW,
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             IExtractIconW_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             int icon_idx=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, &icon_idx))
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,icon_idx,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,icon_idx,
569                                 GetSystemMetrics( SM_CXSMICON ),
570                                 GetSystemMetrics( SM_CYSMICON ),
571                                 &psfi->hIcon, 0, 1, 0);
572                         else
573                             PrivateExtractIconsW( sTemp, icon_idx,
574                                 GetSystemMetrics( SM_CXICON),
575                                 GetSystemMetrics( SM_CYICON),
576                                 &psfi->hIcon, 0, 1, 0);
577                         psfi->iIcon = icon_idx;
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 = NULL;
638     LPCWSTR pathW;
639     DWORD ret;
640     SHFILEINFOW temppsfi;
641
642     if (flags & SHGFI_PIDL)
643     {
644         /* path contains a pidl */
645         pathW = (LPCWSTR)path;
646     }
647     else
648     {
649         len = MultiByteToWideChar(CP_ACP, 0, path, -1, NULL, 0);
650         temppath = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
651         MultiByteToWideChar(CP_ACP, 0, path, -1, temppath, len);
652         pathW = temppath;
653     }
654
655     if (psfi && (flags & SHGFI_ATTR_SPECIFIED))
656         temppsfi.dwAttributes=psfi->dwAttributes;
657
658     if (psfi == NULL)
659         ret = SHGetFileInfoW(pathW, dwFileAttributes, NULL, sizeof(temppsfi), flags);
660     else
661         ret = SHGetFileInfoW(pathW, dwFileAttributes, &temppsfi, sizeof(temppsfi), flags);
662
663     if (psfi)
664     {
665         if(flags & SHGFI_ICON)
666             psfi->hIcon=temppsfi.hIcon;
667         if(flags & (SHGFI_SYSICONINDEX|SHGFI_ICON|SHGFI_ICONLOCATION))
668             psfi->iIcon=temppsfi.iIcon;
669         if(flags & SHGFI_ATTRIBUTES)
670             psfi->dwAttributes=temppsfi.dwAttributes;
671         if(flags & (SHGFI_DISPLAYNAME|SHGFI_ICONLOCATION))
672         {
673             WideCharToMultiByte(CP_ACP, 0, temppsfi.szDisplayName, -1,
674                   psfi->szDisplayName, sizeof(psfi->szDisplayName), NULL, NULL);
675         }
676         if(flags & SHGFI_TYPENAME)
677         {
678             WideCharToMultiByte(CP_ACP, 0, temppsfi.szTypeName, -1,
679                   psfi->szTypeName, sizeof(psfi->szTypeName), NULL, NULL);
680         }
681     }
682
683     HeapFree(GetProcessHeap(), 0, temppath);
684
685     return ret;
686 }
687
688 /*************************************************************************
689  * DuplicateIcon            [SHELL32.@]
690  */
691 HICON WINAPI DuplicateIcon( HINSTANCE hInstance, HICON hIcon)
692 {
693     ICONINFO IconInfo;
694     HICON hDupIcon = 0;
695
696     TRACE("%p %p\n", hInstance, hIcon);
697
698     if (GetIconInfo(hIcon, &IconInfo))
699     {
700         hDupIcon = CreateIconIndirect(&IconInfo);
701
702         /* clean up hbmMask and hbmColor */
703         DeleteObject(IconInfo.hbmMask);
704         DeleteObject(IconInfo.hbmColor);
705     }
706
707     return hDupIcon;
708 }
709
710 /*************************************************************************
711  * ExtractIconA                [SHELL32.@]
712  */
713 HICON WINAPI ExtractIconA(HINSTANCE hInstance, LPCSTR lpszFile, UINT nIconIndex)
714 {   
715     HICON ret;
716     INT len = MultiByteToWideChar(CP_ACP, 0, lpszFile, -1, NULL, 0);
717     LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
718
719     TRACE("%p %s %d\n", hInstance, lpszFile, nIconIndex);
720
721     MultiByteToWideChar(CP_ACP, 0, lpszFile, -1, lpwstrFile, len);
722     ret = ExtractIconW(hInstance, lpwstrFile, nIconIndex);
723     HeapFree(GetProcessHeap(), 0, lpwstrFile);
724
725     return ret;
726 }
727
728 /*************************************************************************
729  * ExtractIconW                [SHELL32.@]
730  */
731 HICON WINAPI ExtractIconW(HINSTANCE hInstance, LPCWSTR lpszFile, UINT nIconIndex)
732 {
733     HICON  hIcon = NULL;
734     UINT ret;
735     UINT cx = GetSystemMetrics(SM_CXICON), cy = GetSystemMetrics(SM_CYICON);
736
737     TRACE("%p %s %d\n", hInstance, debugstr_w(lpszFile), nIconIndex);
738
739     if (nIconIndex == 0xFFFFFFFF)
740     {
741         ret = PrivateExtractIconsW(lpszFile, 0, cx, cy, NULL, NULL, 0, LR_DEFAULTCOLOR);
742         if (ret != 0xFFFFFFFF && ret)
743             return (HICON)(UINT_PTR)ret;
744         return NULL;
745     }
746     else
747         ret = PrivateExtractIconsW(lpszFile, nIconIndex, cx, cy, &hIcon, NULL, 1, LR_DEFAULTCOLOR);
748
749     if (ret == 0xFFFFFFFF)
750         return (HICON)1;
751     else if (ret > 0 && hIcon)
752         return hIcon;
753
754     return NULL;
755 }
756
757 /*************************************************************************
758  * Printer_LoadIconsW        [SHELL32.205]
759  */
760 VOID WINAPI Printer_LoadIconsW(LPCWSTR wsPrinterName, HICON * pLargeIcon, HICON * pSmallIcon)
761 {
762     INT iconindex=IDI_SHELL_PRINTER;
763
764     TRACE("(%s, %p, %p)\n", debugstr_w(wsPrinterName), pLargeIcon, pSmallIcon);
765
766     /* We should check if wsPrinterName is
767        1. the Default Printer or not
768        2. connected or not
769        3. a Local Printer or a Network-Printer
770        and use different Icons
771     */
772     if((wsPrinterName != NULL) && (wsPrinterName[0] != 0))
773     {
774         FIXME("(select Icon by PrinterName %s not implemented)\n", debugstr_w(wsPrinterName));
775     }
776
777     if(pLargeIcon != NULL)
778         *pLargeIcon = LoadImageW(shell32_hInstance,
779                                  (LPCWSTR) MAKEINTRESOURCE(iconindex), IMAGE_ICON,
780                                  0, 0, LR_DEFAULTCOLOR|LR_DEFAULTSIZE);
781
782     if(pSmallIcon != NULL)
783         *pSmallIcon = LoadImageW(shell32_hInstance,
784                                  (LPCWSTR) MAKEINTRESOURCE(iconindex), IMAGE_ICON,
785                                  16, 16, LR_DEFAULTCOLOR);
786 }
787
788 /*************************************************************************
789  * Printers_RegisterWindowW        [SHELL32.213]
790  * used by "printui.dll":
791  * find the Window of the given Type for the specific Printer and 
792  * return the already existent hwnd or open a new window
793  */
794 BOOL WINAPI Printers_RegisterWindowW(LPCWSTR wsPrinter, DWORD dwType,
795             HANDLE * phClassPidl, HWND * phwnd)
796 {
797     FIXME("(%s, %lx, %p (%p), %p (%p)) stub!\n", debugstr_w(wsPrinter), dwType,
798                 phClassPidl, (phClassPidl != NULL) ? *(phClassPidl) : NULL,
799                 phwnd, (phwnd != NULL) ? *(phwnd) : NULL);
800
801     return FALSE;
802
803
804 /*************************************************************************
805  * Printers_UnregisterWindow      [SHELL32.214]
806  */
807 VOID WINAPI Printers_UnregisterWindow(HANDLE hClassPidl, HWND hwnd)
808 {
809     FIXME("(%p, %p) stub!\n", hClassPidl, hwnd);
810
811
812 /*************************************************************************/
813
814 typedef struct
815 {
816     LPCWSTR  szApp;
817     LPCWSTR  szOtherStuff;
818     HICON hIcon;
819     HFONT hFont;
820 } ABOUT_INFO;
821
822 #define IDC_STATIC_TEXT1   100
823 #define IDC_STATIC_TEXT2   101
824 #define IDC_LISTBOX        99
825 #define IDC_WINE_TEXT      98
826
827 #define DROP_FIELD_TOP    (-15)
828 #define DROP_FIELD_HEIGHT  15
829
830 static BOOL __get_dropline( HWND hWnd, LPRECT lprect )
831 {
832     HWND hWndCtl = GetDlgItem(hWnd, IDC_WINE_TEXT);
833
834     if( hWndCtl )
835     {
836         GetWindowRect( hWndCtl, lprect );
837         MapWindowPoints( 0, hWnd, (LPPOINT)lprect, 2 );
838         lprect->bottom = (lprect->top += DROP_FIELD_TOP);
839         return TRUE;
840     }
841     return FALSE;
842 }
843
844 /*************************************************************************
845  * SHAppBarMessage            [SHELL32.@]
846  */
847 UINT WINAPI SHAppBarMessage(DWORD msg, PAPPBARDATA data)
848 {
849     int width=data->rc.right - data->rc.left;
850     int height=data->rc.bottom - data->rc.top;
851     RECT rec=data->rc;
852
853     switch (msg)
854     {
855     case ABM_GETSTATE:
856         return ABS_ALWAYSONTOP | ABS_AUTOHIDE;
857     case ABM_GETTASKBARPOS:
858         GetWindowRect(data->hWnd, &rec);
859         data->rc=rec;
860         return TRUE;
861     case ABM_ACTIVATE:
862         SetActiveWindow(data->hWnd);
863         return TRUE;
864     case ABM_GETAUTOHIDEBAR:
865         data->hWnd=GetActiveWindow();
866         return TRUE;
867     case ABM_NEW:
868         SetWindowPos(data->hWnd,HWND_TOP,rec.left,rec.top,
869                           width,height,SWP_SHOWWINDOW);
870         return TRUE;
871     case ABM_QUERYPOS:
872         GetWindowRect(data->hWnd, &(data->rc));
873         return TRUE;
874     case ABM_REMOVE:
875         FIXME("ABM_REMOVE broken\n");
876         /* FIXME: this is wrong; should it be DestroyWindow instead? */
877         /*CloseHandle(data->hWnd);*/
878         return TRUE;
879     case ABM_SETAUTOHIDEBAR:
880         SetWindowPos(data->hWnd,HWND_TOP,rec.left+1000,rec.top,
881                          width,height,SWP_SHOWWINDOW);
882         return TRUE;
883     case ABM_SETPOS:
884         data->uEdge=(ABE_RIGHT | ABE_LEFT);
885         SetWindowPos(data->hWnd,HWND_TOP,data->rc.left,data->rc.top,
886                      width,height,SWP_SHOWWINDOW);
887         return TRUE;
888     case ABM_WINDOWPOSCHANGED:
889         return TRUE;
890     }
891     return FALSE;
892 }
893
894 /*************************************************************************
895  * SHHelpShortcuts_RunDLLA        [SHELL32.@]
896  *
897  */
898 DWORD WINAPI SHHelpShortcuts_RunDLLA(DWORD dwArg1, DWORD dwArg2, DWORD dwArg3, DWORD dwArg4)
899 {
900     FIXME("(%lx, %lx, %lx, %lx) stub!\n", dwArg1, dwArg2, dwArg3, dwArg4);
901     return 0;
902 }
903
904 /*************************************************************************
905  * SHHelpShortcuts_RunDLLA        [SHELL32.@]
906  *
907  */
908 DWORD WINAPI SHHelpShortcuts_RunDLLW(DWORD dwArg1, DWORD dwArg2, DWORD dwArg3, DWORD dwArg4)
909 {
910     FIXME("(%lx, %lx, %lx, %lx) stub!\n", dwArg1, dwArg2, dwArg3, dwArg4);
911     return 0;
912 }
913
914 /*************************************************************************
915  * SHLoadInProc                [SHELL32.@]
916  * Create an instance of specified object class from within
917  * the shell process and release it immediately
918  */
919 HRESULT WINAPI SHLoadInProc (REFCLSID rclsid)
920 {
921     void *ptr = NULL;
922
923     TRACE("%s\n", debugstr_guid(rclsid));
924
925     CoCreateInstance(rclsid, NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown,&ptr);
926     if(ptr)
927     {
928         IUnknown * pUnk = ptr;
929         IUnknown_Release(pUnk);
930         return NOERROR;
931     }
932     return DISP_E_MEMBERNOTFOUND;
933 }
934
935 /*************************************************************************
936  * AboutDlgProc            (internal)
937  */
938 INT_PTR CALLBACK AboutDlgProc( HWND hWnd, UINT msg, WPARAM wParam,
939                               LPARAM lParam )
940 {
941     HWND hWndCtl;
942
943     TRACE("\n");
944
945     switch(msg)
946     {
947     case WM_INITDIALOG:
948         {
949             ABOUT_INFO *info = (ABOUT_INFO *)lParam;
950             WCHAR Template[512], AppTitle[512];
951
952             if (info)
953             {
954                 const char* const *pstr = SHELL_Authors;
955                 SendDlgItemMessageW(hWnd, stc1, STM_SETICON,(WPARAM)info->hIcon, 0);
956                 GetWindowTextW( hWnd, Template, sizeof(Template)/sizeof(WCHAR) );
957                 sprintfW( AppTitle, Template, info->szApp );
958                 SetWindowTextW( hWnd, AppTitle );
959                 SetWindowTextW( GetDlgItem(hWnd, IDC_STATIC_TEXT1), info->szApp );
960                 SetWindowTextW( GetDlgItem(hWnd, IDC_STATIC_TEXT2), info->szOtherStuff );
961                 hWndCtl = GetDlgItem(hWnd, IDC_LISTBOX);
962                 SendMessageW( hWndCtl, WM_SETREDRAW, 0, 0 );
963                 SendMessageW( hWndCtl, WM_SETFONT, (WPARAM)info->hFont, 0 );
964                 while (*pstr)
965                 {
966                     WCHAR name[64];
967                     /* authors list is in utf-8 format */
968                     MultiByteToWideChar( CP_UTF8, 0, *pstr, -1, name, sizeof(name)/sizeof(WCHAR) );
969                     SendMessageW( hWndCtl, LB_ADDSTRING, (WPARAM)-1, (LPARAM)name );
970                     pstr++;
971                 }
972                 SendMessageW( hWndCtl, WM_SETREDRAW, 1, 0 );
973             }
974         }
975         return 1;
976
977     case WM_PAINT:
978         {
979             RECT rect;
980             PAINTSTRUCT ps;
981             HDC hDC = BeginPaint( hWnd, &ps );
982
983             if (__get_dropline( hWnd, &rect ))
984             {
985                 SelectObject( hDC, GetStockObject( BLACK_PEN ) );
986                 MoveToEx( hDC, rect.left, rect.top, NULL );
987                 LineTo( hDC, rect.right, rect.bottom );
988             }
989             EndPaint( hWnd, &ps );
990         }
991     break;
992
993     case WM_COMMAND:
994         if (wParam == IDOK || wParam == IDCANCEL)
995         {
996             EndDialog(hWnd, TRUE);
997             return TRUE;
998         }
999         break;
1000     case WM_CLOSE:
1001       EndDialog(hWnd, TRUE);
1002       break;
1003     }
1004
1005     return 0;
1006 }
1007
1008
1009 /*************************************************************************
1010  * ShellAboutA                [SHELL32.288]
1011  */
1012 BOOL WINAPI ShellAboutA( HWND hWnd, LPCSTR szApp, LPCSTR szOtherStuff, HICON hIcon )
1013 {
1014     BOOL ret;
1015     LPWSTR appW = NULL, otherW = NULL;
1016     int len;
1017
1018     if (szApp)
1019     {
1020         len = MultiByteToWideChar(CP_ACP, 0, szApp, -1, NULL, 0);
1021         appW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
1022         MultiByteToWideChar(CP_ACP, 0, szApp, -1, appW, len);
1023     }
1024     if (szOtherStuff)
1025     {
1026         len = MultiByteToWideChar(CP_ACP, 0, szOtherStuff, -1, NULL, 0);
1027         otherW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
1028         MultiByteToWideChar(CP_ACP, 0, szOtherStuff, -1, otherW, len);
1029     }
1030
1031     ret = ShellAboutW(hWnd, appW, otherW, hIcon);
1032
1033     HeapFree(GetProcessHeap(), 0, otherW);
1034     HeapFree(GetProcessHeap(), 0, appW);
1035     return ret;
1036 }
1037
1038
1039 /*************************************************************************
1040  * ShellAboutW                [SHELL32.289]
1041  */
1042 BOOL WINAPI ShellAboutW( HWND hWnd, LPCWSTR szApp, LPCWSTR szOtherStuff,
1043                              HICON hIcon )
1044 {
1045     ABOUT_INFO info;
1046     LOGFONTW logFont;
1047     HRSRC hRes;
1048     LPVOID template;
1049     BOOL bRet;
1050     static const WCHAR wszSHELL_ABOUT_MSGBOX[] =
1051         {'S','H','E','L','L','_','A','B','O','U','T','_','M','S','G','B','O','X',0};
1052
1053     TRACE("\n");
1054
1055     if(!(hRes = FindResourceW(shell32_hInstance, wszSHELL_ABOUT_MSGBOX, (LPWSTR)RT_DIALOG)))
1056         return FALSE;
1057     if(!(template = (LPVOID)LoadResource(shell32_hInstance, hRes)))
1058         return FALSE;
1059     info.szApp        = szApp;
1060     info.szOtherStuff = szOtherStuff;
1061     info.hIcon        = hIcon ? hIcon : LoadIconW( 0, (LPWSTR)IDI_WINLOGO );
1062
1063     SystemParametersInfoW( SPI_GETICONTITLELOGFONT, 0, &logFont, 0 );
1064     info.hFont = CreateFontIndirectW( &logFont );
1065
1066     bRet = DialogBoxIndirectParamW((HINSTANCE)GetWindowLongPtrW( hWnd, GWLP_HINSTANCE ),
1067                                    template, hWnd, AboutDlgProc, (LPARAM)&info );
1068     DeleteObject(info.hFont);
1069     return bRet;
1070 }
1071
1072 /*************************************************************************
1073  * FreeIconList (SHELL32.@)
1074  */
1075 void WINAPI FreeIconList( DWORD dw )
1076 {
1077     FIXME("%lx: stub\n",dw);
1078 }
1079
1080
1081 /***********************************************************************
1082  * DllGetVersion [SHELL32.@]
1083  *
1084  * Retrieves version information of the 'SHELL32.DLL'
1085  *
1086  * PARAMS
1087  *     pdvi [O] pointer to version information structure.
1088  *
1089  * RETURNS
1090  *     Success: S_OK
1091  *     Failure: E_INVALIDARG
1092  *
1093  * NOTES
1094  *     Returns version of a shell32.dll from IE4.01 SP1.
1095  */
1096
1097 HRESULT WINAPI DllGetVersion (DLLVERSIONINFO *pdvi)
1098 {
1099     /* FIXME: shouldn't these values come from the version resource? */
1100     if (pdvi->cbSize == sizeof(DLLVERSIONINFO) ||
1101         pdvi->cbSize == sizeof(DLLVERSIONINFO2))
1102     {
1103         pdvi->dwMajorVersion = WINE_FILEVERSION_MAJOR;
1104         pdvi->dwMinorVersion = WINE_FILEVERSION_MINOR;
1105         pdvi->dwBuildNumber = WINE_FILEVERSION_BUILD;
1106         pdvi->dwPlatformID = WINE_FILEVERSION_PLATFORMID;
1107         if (pdvi->cbSize == sizeof(DLLVERSIONINFO2))
1108         {
1109             DLLVERSIONINFO2 *pdvi2 = (DLLVERSIONINFO2 *)pdvi;
1110
1111             pdvi2->dwFlags = 0;
1112             pdvi2->ullVersion = MAKEDLLVERULL(WINE_FILEVERSION_MAJOR,
1113                                               WINE_FILEVERSION_MINOR,
1114                                               WINE_FILEVERSION_BUILD,
1115                                               WINE_FILEVERSION_PLATFORMID);
1116         }
1117         TRACE("%lu.%lu.%lu.%lu\n",
1118               pdvi->dwMajorVersion, pdvi->dwMinorVersion,
1119               pdvi->dwBuildNumber, pdvi->dwPlatformID);
1120         return S_OK;
1121     }
1122     else
1123     {
1124         WARN("wrong DLLVERSIONINFO size from app\n");
1125         return E_INVALIDARG;
1126     }
1127 }
1128
1129 /*************************************************************************
1130  * global variables of the shell32.dll
1131  * all are once per process
1132  *
1133  */
1134 HINSTANCE    shell32_hInstance = 0;
1135 HIMAGELIST   ShellSmallIconList = 0;
1136 HIMAGELIST   ShellBigIconList = 0;
1137
1138
1139 /*************************************************************************
1140  * SHELL32 DllMain
1141  *
1142  * NOTES
1143  *  calling oleinitialize here breaks sone apps.
1144  */
1145 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
1146 {
1147     TRACE("%p 0x%lx %p\n", hinstDLL, fdwReason, fImpLoad);
1148
1149     switch (fdwReason)
1150     {
1151     case DLL_PROCESS_ATTACH:
1152         shell32_hInstance = hinstDLL;
1153         DisableThreadLibraryCalls(shell32_hInstance);
1154
1155         /* get full path to this DLL for IExtractIconW_fnGetIconLocation() */
1156         GetModuleFileNameW(hinstDLL, swShell32Name, MAX_PATH);
1157         swShell32Name[MAX_PATH - 1] = '\0';
1158
1159         InitCommonControlsEx(NULL);
1160
1161         SIC_Initialize();
1162         InitChangeNotifications();
1163         break;
1164
1165     case DLL_PROCESS_DETACH:
1166         shell32_hInstance = 0;
1167         SIC_Destroy();
1168         FreeChangeNotifications();
1169         break;
1170     }
1171     return TRUE;
1172 }
1173
1174 /*************************************************************************
1175  * DllInstall         [SHELL32.@]
1176  *
1177  * PARAMETERS
1178  *
1179  *    BOOL bInstall - TRUE for install, FALSE for uninstall
1180  *    LPCWSTR pszCmdLine - command line (unused by shell32?)
1181  */
1182
1183 HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
1184 {
1185     FIXME("%s %s: stub\n", bInstall ? "TRUE":"FALSE", debugstr_w(cmdline));
1186     return S_OK;        /* indicate success */
1187 }
1188
1189 /***********************************************************************
1190  *              DllCanUnloadNow (SHELL32.@)
1191  */
1192 HRESULT WINAPI DllCanUnloadNow(void)
1193 {
1194     FIXME("stub\n");
1195     return S_FALSE;
1196 }