Added stubs for SendIMEMessageEx[A,W].
[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., 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
48 #include "wine/debug.h"
49 #include "wine/unicode.h"
50
51 WINE_DEFAULT_DEBUG_CHANNEL(shell);
52
53 extern const char * const SHELL_Authors[];
54
55 #define MORE_DEBUG 1
56 /*************************************************************************
57  * CommandLineToArgvW                   [SHELL32.@]
58  *
59  * We must interpret the quotes in the command line to rebuild the argv
60  * array correctly:
61  * - arguments are separated by spaces or tabs
62  * - quotes serve as optional argument delimiters
63  *   '"a b"'   -> 'a b'
64  * - escaped quotes must be converted back to '"'
65  *   '\"'      -> '"'
66  * - an odd number of '\'s followed by '"' correspond to half that number
67  *   of '\' followed by a '"' (extension of the above)
68  *   '\\\"'    -> '\"'
69  *   '\\\\\"'  -> '\\"'
70  * - an even number of '\'s followed by a '"' correspond to half that number
71  *   of '\', plus a regular quote serving as an argument delimiter (which
72  *   means it does not appear in the result)
73  *   'a\\"b c"'   -> 'a\b c'
74  *   'a\\\\"b c"' -> 'a\\b c'
75  * - '\' that are not followed by a '"' are copied literally
76  *   'a\b'     -> 'a\b'
77  *   'a\\b'    -> 'a\\b'
78  *
79  * Note:
80  * '\t' == 0x0009
81  * ' '  == 0x0020
82  * '"'  == 0x0022
83  * '\\' == 0x005c
84  */
85 LPWSTR* WINAPI CommandLineToArgvW(LPCWSTR lpCmdline, int* numargs)
86 {
87     DWORD argc;
88     HGLOBAL hargv;
89     LPWSTR  *argv;
90     LPCWSTR cs;
91     LPWSTR arg,s,d;
92     LPWSTR cmdline;
93     int in_quotes,bcount;
94
95     if (*lpCmdline==0) {
96         /* Return the path to the executable */
97         DWORD len, size=16;
98
99         hargv=GlobalAlloc(size, 0);
100         argv=GlobalLock(hargv);
101         for (;;) {
102             len = GetModuleFileNameW(0, (LPWSTR)(argv+1), size-sizeof(LPWSTR));
103             if (!len) {
104                 GlobalFree(hargv);
105                 return NULL;
106             }
107             if (len < size) break;
108             size*=2;
109             hargv=GlobalReAlloc(hargv, size, 0);
110             argv=GlobalLock(hargv);
111         }
112         argv[0]=(LPWSTR)(argv+1);
113         if (numargs)
114             *numargs=2;
115
116         return argv;
117     }
118
119     /* to get a writeable copy */
120     argc=0;
121     bcount=0;
122     in_quotes=0;
123     cs=lpCmdline;
124     while (1) {
125         if (*cs==0 || ((*cs==0x0009 || *cs==0x0020) && !in_quotes)) {
126             /* space */
127             argc++;
128             /* skip the remaining spaces */
129             while (*cs==0x0009 || *cs==0x0020) {
130                 cs++;
131             }
132             if (*cs==0)
133                 break;
134             bcount=0;
135             continue;
136         } else if (*cs==0x005c) {
137             /* '\', count them */
138             bcount++;
139         } else if ((*cs==0x0022) && ((bcount & 1)==0)) {
140             /* unescaped '"' */
141             in_quotes=!in_quotes;
142             bcount=0;
143         } else {
144             /* a regular character */
145             bcount=0;
146         }
147         cs++;
148     }
149     /* Allocate in a single lump, the string array, and the strings that go with it.
150      * This way the caller can make a single GlobalFree call to free both, as per MSDN.
151      */
152     hargv=GlobalAlloc(0, argc*sizeof(LPWSTR)+(strlenW(lpCmdline)+1)*sizeof(WCHAR));
153     argv=GlobalLock(hargv);
154     if (!argv)
155         return NULL;
156     cmdline=(LPWSTR)(argv+argc);
157     strcpyW(cmdline, lpCmdline);
158
159     argc=0;
160     bcount=0;
161     in_quotes=0;
162     arg=d=s=cmdline;
163     while (*s) {
164         if ((*s==0x0009 || *s==0x0020) && !in_quotes) {
165             /* Close the argument and copy it */
166             *d=0;
167             argv[argc++]=arg;
168
169             /* skip the remaining spaces */
170             do {
171                 s++;
172             } while (*s==0x0009 || *s==0x0020);
173
174             /* Start with a new argument */
175             arg=d=s;
176             bcount=0;
177         } else if (*s==0x005c) {
178             /* '\\' */
179             *d++=*s++;
180             bcount++;
181         } else if (*s==0x0022) {
182             /* '"' */
183             if ((bcount & 1)==0) {
184                 /* Preceeded by an even number of '\', this is half that
185                  * number of '\', plus a quote which we erase.
186                  */
187                 d-=bcount/2;
188                 in_quotes=!in_quotes;
189                 s++;
190             } else {
191                 /* Preceeded by an odd number of '\', this is half that
192                  * number of '\' followed by a '"'
193                  */
194                 d=d-bcount/2-1;
195                 *d++='"';
196                 s++;
197             }
198             bcount=0;
199         } else {
200             /* a regular character */
201             *d++=*s++;
202             bcount=0;
203         }
204     }
205     if (*arg) {
206         *d='\0';
207         argv[argc++]=arg;
208     }
209     if (numargs)
210         *numargs=argc;
211
212     return argv;
213 }
214
215 /*************************************************************************
216  * SHGetFileInfoA                       [SHELL32.@]
217  *
218  */
219
220 DWORD WINAPI SHGetFileInfoW(LPCWSTR path,DWORD dwFileAttributes,
221                               SHFILEINFOW *psfi, UINT sizeofpsfi,
222                               UINT flags )
223 {
224         WCHAR szLocation[MAX_PATH], szFullPath[MAX_PATH];
225         int iIndex;
226         DWORD ret = TRUE, dwAttributes = 0;
227         IShellFolder * psfParent = NULL;
228         IExtractIconW * pei = NULL;
229         LPITEMIDLIST    pidlLast = NULL, pidl = NULL;
230         HRESULT hr = S_OK;
231         BOOL IconNotYetLoaded=TRUE;
232
233         TRACE("(%s fattr=0x%lx sfi=%p(attr=0x%08lx) size=0x%x flags=0x%x)\n",
234           (flags & SHGFI_PIDL)? "pidl" : debugstr_w(path), dwFileAttributes, psfi, psfi->dwAttributes, sizeofpsfi, flags);
235
236         if ((flags & SHGFI_USEFILEATTRIBUTES) && (flags & (SHGFI_ATTRIBUTES|SHGFI_EXETYPE|SHGFI_PIDL)))
237           return FALSE;
238
239         /* windows initializes this values regardless of the flags */
240         if (psfi != NULL) {
241             psfi->szDisplayName[0] = '\0';
242             psfi->szTypeName[0] = '\0';
243             psfi->iIcon = 0;
244         }
245
246        if (!(flags & SHGFI_PIDL)){
247             /* SHGitFileInfo should work with absolute and relative paths */
248             if (PathIsRelativeW(path)){
249                 GetCurrentDirectoryW(MAX_PATH, szLocation);
250                 PathCombineW(szFullPath, szLocation, path);
251             } else {
252                 lstrcpynW(szFullPath, path, MAX_PATH);
253             }
254         }
255
256         if (flags & SHGFI_EXETYPE) {
257           BOOL status = FALSE;
258           HANDLE hfile;
259           DWORD BinaryType;
260           IMAGE_DOS_HEADER mz_header;
261           IMAGE_NT_HEADERS nt;
262           DWORD len;
263           char magic[4];
264
265           if (flags != SHGFI_EXETYPE) return 0;
266
267          status = GetBinaryTypeW (szFullPath, &BinaryType);
268           if (!status) return 0;
269           if ((BinaryType == SCS_DOS_BINARY)
270                 || (BinaryType == SCS_PIF_BINARY)) return 0x4d5a;
271
272          hfile = CreateFileW( szFullPath, GENERIC_READ, FILE_SHARE_READ,
273                 NULL, OPEN_EXISTING, 0, 0 );
274           if ( hfile == INVALID_HANDLE_VALUE ) return 0;
275
276         /* The next section is adapted from MODULE_GetBinaryType, as we need
277          * to examine the image header to get OS and version information. We
278          * know from calling GetBinaryTypeA that the image is valid and either
279          * an NE or PE, so much error handling can be omitted.
280          * Seek to the start of the file and read the header information.
281          */
282
283           SetFilePointer( hfile, 0, NULL, SEEK_SET );
284           ReadFile( hfile, &mz_header, sizeof(mz_header), &len, NULL );
285
286          SetFilePointer( hfile, mz_header.e_lfanew, NULL, SEEK_SET );
287          ReadFile( hfile, magic, sizeof(magic), &len, NULL );
288          if ( *(DWORD*)magic      == IMAGE_NT_SIGNATURE )
289          {
290              SetFilePointer( hfile, mz_header.e_lfanew, NULL, SEEK_SET );
291              ReadFile( hfile, &nt, sizeof(nt), &len, NULL );
292               CloseHandle( hfile );
293               if (nt.OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI) {
294                  return IMAGE_NT_SIGNATURE
295                         | (nt.OptionalHeader.MajorSubsystemVersion << 24)
296                         | (nt.OptionalHeader.MinorSubsystemVersion << 16);
297               }
298               return IMAGE_NT_SIGNATURE;
299           }
300          else if ( *(WORD*)magic == IMAGE_OS2_SIGNATURE )
301          {
302              IMAGE_OS2_HEADER ne;
303              SetFilePointer( hfile, mz_header.e_lfanew, NULL, SEEK_SET );
304              ReadFile( hfile, &ne, sizeof(ne), &len, NULL );
305               CloseHandle( hfile );
306              if (ne.ne_exetyp == 2) return IMAGE_OS2_SIGNATURE
307                         | (ne.ne_expver << 16);
308               return 0;
309           }
310           CloseHandle( hfile );
311           return 0;
312       }
313
314       /* psfi is NULL normally to query EXE type. If it is NULL, none of the
315        * below makes sense anyway. Windows allows this and just returns FALSE */
316       if (psfi == NULL) return FALSE;
317
318         /* translate the path into a pidl only when SHGFI_USEFILEATTRIBUTES
319          * is not specified.
320            The pidl functions fail on not existing file names */
321
322         if (flags & SHGFI_PIDL) {
323             pidl = ILClone((LPCITEMIDLIST)path);
324         } else if (!(flags & SHGFI_USEFILEATTRIBUTES)) {
325            hr = SHILCreateFromPathW(szFullPath, &pidl, &dwAttributes);
326         }
327
328         if ((flags & SHGFI_PIDL) || !(flags & SHGFI_USEFILEATTRIBUTES))
329         {
330            /* get the parent shellfolder */
331            if (pidl) {
332               hr = SHBindToParent(pidl, &IID_IShellFolder, (LPVOID*)&psfParent, (LPCITEMIDLIST*)&pidlLast);
333               ILFree(pidl);
334            } else {
335               ERR("pidl is null!\n");
336               return FALSE;
337            }
338         }
339
340         /* get the attributes of the child */
341         if (SUCCEEDED(hr) && (flags & SHGFI_ATTRIBUTES))
342         {
343           if (!(flags & SHGFI_ATTR_SPECIFIED))
344           {
345             psfi->dwAttributes = 0xffffffff;
346           }
347           IShellFolder_GetAttributesOf(psfParent, 1, (LPCITEMIDLIST*)&pidlLast, &(psfi->dwAttributes));
348         }
349
350         /* get the displayname */
351         if (SUCCEEDED(hr) && (flags & SHGFI_DISPLAYNAME))
352         {
353           if (flags & SHGFI_USEFILEATTRIBUTES)
354           {
355            lstrcpyW (psfi->szDisplayName, PathFindFileNameW(szFullPath));
356           }
357           else
358           {
359             STRRET str;
360             hr = IShellFolder_GetDisplayNameOf(psfParent, pidlLast, SHGDN_INFOLDER, &str);
361             StrRetToStrNW (psfi->szDisplayName, MAX_PATH, &str, pidlLast);
362           }
363         }
364
365         /* get the type name */
366         if (SUCCEEDED(hr) && (flags & SHGFI_TYPENAME))
367         {
368             static const WCHAR szFile[] = { 'F','i','l','e',0 };
369             static const WCHAR szDashFile[] = { '-','f','i','l','e',0 };
370             if (!(flags & SHGFI_USEFILEATTRIBUTES))
371             {
372                 char ftype[80];
373                 _ILGetFileType(pidlLast, ftype, 80);
374                 MultiByteToWideChar(CP_ACP, 0, ftype, -1, psfi->szTypeName, 80 );
375             }
376             else
377             {
378                 if (dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
379                    strcatW (psfi->szTypeName, szFile);
380                 else 
381                 {
382                    WCHAR sTemp[64];
383                    lstrcpyW(sTemp,PathFindExtensionW(szFullPath));
384                    if (!( HCR_MapTypeToValueW(sTemp, sTemp, 64, TRUE)
385                         && HCR_MapTypeToValueW(sTemp, psfi->szTypeName, 80, FALSE )))
386                    {
387                        lstrcpynW (psfi->szTypeName, sTemp, 64);
388                        strcatW (psfi->szTypeName, szDashFile);
389                    }
390                 }
391             }
392         }
393
394         /* ### icons ###*/
395         if (flags & SHGFI_LINKOVERLAY)
396           FIXME("set icon to link, stub\n");
397
398         if (flags & SHGFI_SELECTED)
399           FIXME("set icon to selected, stub\n");
400
401         if (flags & SHGFI_SHELLICONSIZE)
402           FIXME("set icon to shell size, stub\n");
403
404         /* get the iconlocation */
405         if (SUCCEEDED(hr) && (flags & SHGFI_ICONLOCATION ))
406         {
407           UINT uDummy,uFlags;
408           hr = IShellFolder_GetUIObjectOf(psfParent, 0, 1, (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconA, &uDummy, (LPVOID*)&pei);
409
410           if (SUCCEEDED(hr))
411           {
412            hr = IExtractIconW_GetIconLocation(pei, (flags & SHGFI_OPENICON)? GIL_OPENICON : 0,szLocation, MAX_PATH, &iIndex, &uFlags);
413            psfi->iIcon = iIndex;
414
415             if(uFlags != GIL_NOTFILENAME)
416               lstrcpyW (psfi->szDisplayName, szLocation);
417             else
418               ret = FALSE;
419
420             IExtractIconA_Release(pei);
421           }
422         }
423
424         /* get icon index (or load icon)*/
425         if (SUCCEEDED(hr) && (flags & (SHGFI_ICON | SHGFI_SYSICONINDEX)))
426         {
427
428           if (flags & SHGFI_USEFILEATTRIBUTES)
429           {
430             WCHAR sTemp [MAX_PATH];
431             WCHAR * szExt;
432             DWORD dwNr=0;
433
434             lstrcpynW(sTemp, szFullPath, MAX_PATH);
435
436             if (dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
437                psfi->iIcon = 2;
438             else
439             {
440                static const WCHAR p1W[] = {'%','1',0};
441                psfi->iIcon = 0;
442                szExt = (LPWSTR) PathFindExtensionW(sTemp);
443                if ( szExt && HCR_MapTypeToValueW(szExt, sTemp, MAX_PATH, TRUE)
444                    && HCR_GetDefaultIconW(sTemp, sTemp, MAX_PATH, &dwNr))
445                {
446                   if (!lstrcmpW(p1W,sTemp))            /* icon is in the file */
447                      strcpyW(sTemp, szFullPath);
448
449                   if (flags & SHGFI_SYSICONINDEX) 
450                   {
451                       psfi->iIcon = SIC_GetIconIndex(sTemp,dwNr);
452                       if (psfi->iIcon == -1) psfi->iIcon = 0;
453                   }
454                   else 
455                   {
456                       IconNotYetLoaded=FALSE;
457                       PrivateExtractIconsW(sTemp,dwNr,(flags & SHGFI_SMALLICON) ? 
458                         GetSystemMetrics(SM_CXSMICON) : GetSystemMetrics(SM_CXICON),
459                         (flags & SHGFI_SMALLICON) ? GetSystemMetrics(SM_CYSMICON) :
460                         GetSystemMetrics(SM_CYICON), &psfi->hIcon,0,1,0);
461                       psfi->iIcon = dwNr;
462                   }
463                }
464             }
465           }
466           else
467           {
468             if (!(PidlToSicIndex(psfParent, pidlLast, !(flags & SHGFI_SMALLICON),
469               (flags & SHGFI_OPENICON)? GIL_OPENICON : 0, &(psfi->iIcon))))
470             {
471               ret = FALSE;
472             }
473           }
474           if (ret)
475           {
476             ret = (DWORD) ((flags & SHGFI_SMALLICON) ? ShellSmallIconList : ShellBigIconList);
477           }
478         }
479
480         /* icon handle */
481         if (SUCCEEDED(hr) && (flags & SHGFI_ICON) && IconNotYetLoaded)
482           psfi->hIcon = ImageList_GetIcon((flags & SHGFI_SMALLICON) ? ShellSmallIconList:ShellBigIconList, psfi->iIcon, ILD_NORMAL);
483
484         if (flags & (SHGFI_UNKNOWN1 | SHGFI_UNKNOWN2 | SHGFI_UNKNOWN3))
485           FIXME("unknown attribute!\n");
486
487         if (psfParent)
488           IShellFolder_Release(psfParent);
489
490         if (hr != S_OK)
491           ret = FALSE;
492
493         if(pidlLast) SHFree(pidlLast);
494 #ifdef MORE_DEBUG
495         TRACE ("icon=%p index=0x%08x attr=0x%08lx name=%s type=%s ret=0x%08lx\n",
496                 psfi->hIcon, psfi->iIcon, psfi->dwAttributes, debugstr_w(psfi->szDisplayName), debugstr_w(psfi->szTypeName), ret);
497 #endif
498         return ret;
499 }
500
501 /*************************************************************************
502  * SHGetFileInfoW                       [SHELL32.@]
503  */
504
505 DWORD WINAPI SHGetFileInfoA(LPCSTR path,DWORD dwFileAttributes,
506                               SHFILEINFOA *psfi, UINT sizeofpsfi,
507                               UINT flags )
508 {
509         INT len;
510         LPWSTR temppath;
511         DWORD ret;
512         SHFILEINFOW temppsfi;
513
514         if (flags & SHGFI_PIDL) {
515           /* path contains a pidl */
516           temppath = (LPWSTR) path;
517         } else {
518           len = MultiByteToWideChar(CP_ACP, 0, path, -1, NULL, 0);
519           temppath = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
520           MultiByteToWideChar(CP_ACP, 0, path, -1, temppath, len);
521         }
522
523         if(psfi && (flags & SHGFI_ATTR_SPECIFIED))
524                temppsfi.dwAttributes=psfi->dwAttributes;
525
526         ret = SHGetFileInfoW(temppath, dwFileAttributes, (psfi == NULL)? NULL : &temppsfi, sizeof(temppsfi), flags);
527
528         if (psfi)
529         {
530             if(flags & SHGFI_ICON)
531                 psfi->hIcon=temppsfi.hIcon;
532             if(flags & (SHGFI_SYSICONINDEX|SHGFI_ICON|SHGFI_ICONLOCATION))
533                 psfi->iIcon=temppsfi.iIcon;
534             if(flags & SHGFI_ATTRIBUTES)
535                 psfi->dwAttributes=temppsfi.dwAttributes;
536             if(flags & (SHGFI_DISPLAYNAME|SHGFI_ICONLOCATION))
537                 WideCharToMultiByte(CP_ACP, 0, temppsfi.szDisplayName, -1, psfi->szDisplayName, sizeof(psfi->szDisplayName), NULL, NULL);
538             if(flags & SHGFI_TYPENAME)
539                 WideCharToMultiByte(CP_ACP, 0, temppsfi.szTypeName, -1, psfi->szTypeName, sizeof(psfi->szTypeName), NULL, NULL);
540         }
541         if(!(flags & SHGFI_PIDL)) HeapFree(GetProcessHeap(), 0, temppath);
542         return ret;
543 }
544
545 /*************************************************************************
546  * DuplicateIcon                        [SHELL32.@]
547  */
548 HICON WINAPI DuplicateIcon( HINSTANCE hInstance, HICON hIcon)
549 {
550     ICONINFO IconInfo;
551     HICON hDupIcon = 0;
552
553     TRACE("(%p, %p)\n", hInstance, hIcon);
554
555     if(GetIconInfo(hIcon, &IconInfo))
556     {
557         hDupIcon = CreateIconIndirect(&IconInfo);
558
559         /* clean up hbmMask and hbmColor */
560         DeleteObject(IconInfo.hbmMask);
561         DeleteObject(IconInfo.hbmColor);
562     }
563
564     return hDupIcon;
565 }
566
567 /*************************************************************************
568  * ExtractIconA                         [SHELL32.@]
569  */
570 HICON WINAPI ExtractIconA(HINSTANCE hInstance, LPCSTR lpszFile, UINT nIconIndex)
571 {   
572   HICON ret;
573   INT len = MultiByteToWideChar(CP_ACP, 0, lpszFile, -1, NULL, 0);
574   LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
575
576   TRACE("%p %s %d\n", hInstance, lpszFile, nIconIndex);
577
578   MultiByteToWideChar(CP_ACP, 0, lpszFile, -1, lpwstrFile, len);
579   ret = ExtractIconW(hInstance, lpwstrFile, nIconIndex);
580   HeapFree(GetProcessHeap(), 0, lpwstrFile);
581   return ret;
582 }
583
584 /*************************************************************************
585  * ExtractIconW                         [SHELL32.@]
586  */
587 HICON WINAPI ExtractIconW(HINSTANCE hInstance, LPCWSTR lpszFile, UINT nIconIndex)
588 {
589         HICON  hIcon = NULL;
590         UINT ret;
591         UINT cx = GetSystemMetrics(SM_CXICON), cy = GetSystemMetrics(SM_CYICON);
592
593         TRACE("%p %s %d\n", hInstance, debugstr_w(lpszFile), nIconIndex);
594
595         if (nIconIndex == 0xFFFFFFFF) {
596           ret = PrivateExtractIconsW(lpszFile, 0, cx, cy, NULL, NULL, 0, LR_DEFAULTCOLOR);
597           if (ret != 0xFFFFFFFF && ret)
598             return (HICON)ret;
599           return NULL;
600         }
601         else
602           ret = PrivateExtractIconsW(lpszFile, nIconIndex, cx, cy, &hIcon, NULL, 1, LR_DEFAULTCOLOR);
603
604         if (ret == 0xFFFFFFFF)
605           return (HICON)1;
606         else if (ret > 0 && hIcon)
607           return hIcon;
608         return NULL;
609 }
610
611 typedef struct
612 {
613     LPCWSTR  szApp;
614     LPCWSTR  szOtherStuff;
615     HICON hIcon;
616     HFONT hFont;
617 } ABOUT_INFO;
618
619 #define         IDC_STATIC_TEXT1        100
620 #define         IDC_STATIC_TEXT2        101
621 #define         IDC_LISTBOX             99
622 #define         IDC_WINE_TEXT           98
623
624 #define         DROP_FIELD_TOP          (-15)
625 #define         DROP_FIELD_HEIGHT       15
626
627 static BOOL __get_dropline( HWND hWnd, LPRECT lprect )
628 { HWND hWndCtl = GetDlgItem(hWnd, IDC_WINE_TEXT);
629     if( hWndCtl )
630   { GetWindowRect( hWndCtl, lprect );
631         MapWindowPoints( 0, hWnd, (LPPOINT)lprect, 2 );
632         lprect->bottom = (lprect->top += DROP_FIELD_TOP);
633         return TRUE;
634     }
635     return FALSE;
636 }
637
638 /*************************************************************************
639  * SHAppBarMessage                      [SHELL32.@]
640  */
641 UINT WINAPI SHAppBarMessage(DWORD msg, PAPPBARDATA data)
642 {
643         int width=data->rc.right - data->rc.left;
644         int height=data->rc.bottom - data->rc.top;
645         RECT rec=data->rc;
646         switch (msg)
647         { case ABM_GETSTATE:
648                return ABS_ALWAYSONTOP | ABS_AUTOHIDE;
649           case ABM_GETTASKBARPOS:
650                GetWindowRect(data->hWnd, &rec);
651                data->rc=rec;
652                return TRUE;
653           case ABM_ACTIVATE:
654                SetActiveWindow(data->hWnd);
655                return TRUE;
656           case ABM_GETAUTOHIDEBAR:
657                data->hWnd=GetActiveWindow();
658                return TRUE;
659           case ABM_NEW:
660                SetWindowPos(data->hWnd,HWND_TOP,rec.left,rec.top,
661                                         width,height,SWP_SHOWWINDOW);
662                return TRUE;
663           case ABM_QUERYPOS:
664                GetWindowRect(data->hWnd, &(data->rc));
665                return TRUE;
666           case ABM_REMOVE:
667                FIXME("ABM_REMOVE broken\n");
668                /* FIXME: this is wrong; should it be DestroyWindow instead? */
669                /*CloseHandle(data->hWnd);*/
670                return TRUE;
671           case ABM_SETAUTOHIDEBAR:
672                SetWindowPos(data->hWnd,HWND_TOP,rec.left+1000,rec.top,
673                                        width,height,SWP_SHOWWINDOW);
674                return TRUE;
675           case ABM_SETPOS:
676                data->uEdge=(ABE_RIGHT | ABE_LEFT);
677                SetWindowPos(data->hWnd,HWND_TOP,data->rc.left,data->rc.top,
678                                   width,height,SWP_SHOWWINDOW);
679                return TRUE;
680           case ABM_WINDOWPOSCHANGED:
681                return TRUE;
682           }
683       return FALSE;
684 }
685
686 /*************************************************************************
687  * SHHelpShortcuts_RunDLL               [SHELL32.@]
688  *
689  */
690 DWORD WINAPI SHHelpShortcuts_RunDLL (DWORD dwArg1, DWORD dwArg2, DWORD dwArg3, DWORD dwArg4)
691 { FIXME("(%lx, %lx, %lx, %lx) empty stub!\n",
692         dwArg1, dwArg2, dwArg3, dwArg4);
693
694   return 0;
695 }
696
697 /*************************************************************************
698  * SHLoadInProc                         [SHELL32.@]
699  * Create an instance of specified object class from within
700  * the shell process and release it immediately
701  */
702
703 HRESULT WINAPI SHLoadInProc (REFCLSID rclsid)
704 {
705     void *ptr = NULL;
706
707     TRACE("%s\n", debugstr_guid(rclsid));
708
709     CoCreateInstance(rclsid, NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown,&ptr);
710     if(ptr)
711     {
712         IUnknown * pUnk = ptr;
713         IUnknown_Release(pUnk);
714         return NOERROR;
715     }
716     return DISP_E_MEMBERNOTFOUND;
717 }
718
719 /*************************************************************************
720  * AboutDlgProc                 (internal)
721  */
722 INT_PTR CALLBACK AboutDlgProc( HWND hWnd, UINT msg, WPARAM wParam,
723                               LPARAM lParam )
724 {
725     HWND hWndCtl;
726
727     TRACE("\n");
728
729     switch(msg)
730     {
731     case WM_INITDIALOG:
732         {
733             ABOUT_INFO *info = (ABOUT_INFO *)lParam;
734             WCHAR Template[512], AppTitle[512];
735
736             if (info)
737             {
738                 const char* const *pstr = SHELL_Authors;
739                 SendDlgItemMessageW(hWnd, stc1, STM_SETICON,(WPARAM)info->hIcon, 0);
740                 GetWindowTextW( hWnd, Template, sizeof(Template)/sizeof(WCHAR) );
741                 sprintfW( AppTitle, Template, info->szApp );
742                 SetWindowTextW( hWnd, AppTitle );
743                 SetWindowTextW( GetDlgItem(hWnd, IDC_STATIC_TEXT1), info->szApp );
744                 SetWindowTextW( GetDlgItem(hWnd, IDC_STATIC_TEXT2), info->szOtherStuff );
745                 hWndCtl = GetDlgItem(hWnd, IDC_LISTBOX);
746                 SendMessageW( hWndCtl, WM_SETREDRAW, 0, 0 );
747                 SendMessageW( hWndCtl, WM_SETFONT, (WPARAM)info->hFont, 0 );
748                 while (*pstr)
749                 {
750                     WCHAR name[64];
751                     /* authors list is in iso-8859-1 format */
752                     MultiByteToWideChar( 28591, 0, *pstr, -1, name, sizeof(name)/sizeof(WCHAR) );
753                     SendMessageW( hWndCtl, LB_ADDSTRING, (WPARAM)-1, (LPARAM)name );
754                     pstr++;
755                 }
756                 SendMessageW( hWndCtl, WM_SETREDRAW, 1, 0 );
757             }
758         }
759         return 1;
760
761     case WM_PAINT:
762       { RECT rect;
763             PAINTSTRUCT ps;
764             HDC hDC = BeginPaint( hWnd, &ps );
765
766             if( __get_dropline( hWnd, &rect ) ) {
767                 SelectObject( hDC, GetStockObject( BLACK_PEN ) );
768                 MoveToEx( hDC, rect.left, rect.top, NULL );
769                 LineTo( hDC, rect.right, rect.bottom );
770             }
771             EndPaint( hWnd, &ps );
772         }
773         break;
774
775     case WM_COMMAND:
776         if (wParam == IDOK || wParam == IDCANCEL)
777         {
778             EndDialog(hWnd, TRUE);
779             return TRUE;
780         }
781         break;
782     case WM_CLOSE:
783       EndDialog(hWnd, TRUE);
784       break;
785     }
786
787     return 0;
788 }
789
790
791 /*************************************************************************
792  * ShellAboutA                          [SHELL32.288]
793  */
794 BOOL WINAPI ShellAboutA( HWND hWnd, LPCSTR szApp, LPCSTR szOtherStuff, HICON hIcon )
795 {
796     BOOL ret;
797     LPWSTR appW = NULL, otherW = NULL;
798     int len;
799
800     if (szApp)
801     {
802         len = MultiByteToWideChar(CP_ACP, 0, szApp, -1, NULL, 0);
803         appW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
804         MultiByteToWideChar(CP_ACP, 0, szApp, -1, appW, len);
805     }
806     if (szOtherStuff)
807     {
808         len = MultiByteToWideChar(CP_ACP, 0, szOtherStuff, -1, NULL, 0);
809         otherW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
810         MultiByteToWideChar(CP_ACP, 0, szOtherStuff, -1, otherW, len);
811     }
812
813     ret = ShellAboutW(hWnd, appW, otherW, hIcon);
814
815     HeapFree(GetProcessHeap(), 0, otherW);
816     HeapFree(GetProcessHeap(), 0, appW);
817     return ret;
818 }
819
820
821 /*************************************************************************
822  * ShellAboutW                          [SHELL32.289]
823  */
824 BOOL WINAPI ShellAboutW( HWND hWnd, LPCWSTR szApp, LPCWSTR szOtherStuff,
825                              HICON hIcon )
826 {
827     ABOUT_INFO info;
828     LOGFONTW logFont;
829     HRSRC hRes;
830     LPVOID template;
831     BOOL bRet;
832     static const WCHAR wszSHELL_ABOUT_MSGBOX[] =
833         {'S','H','E','L','L','_','A','B','O','U','T','_','M','S','G','B','O','X',0};
834
835     TRACE("\n");
836
837     if(!(hRes = FindResourceW(shell32_hInstance, wszSHELL_ABOUT_MSGBOX, (LPWSTR)RT_DIALOG)))
838         return FALSE;
839     if(!(template = (LPVOID)LoadResource(shell32_hInstance, hRes)))
840         return FALSE;
841     info.szApp        = szApp;
842     info.szOtherStuff = szOtherStuff;
843     info.hIcon        = hIcon ? hIcon : LoadIconW( 0, (LPWSTR)IDI_WINLOGO );
844
845     SystemParametersInfoW( SPI_GETICONTITLELOGFONT, 0, &logFont, 0 );
846     info.hFont = CreateFontIndirectW( &logFont );
847
848     bRet = DialogBoxIndirectParamW((HINSTANCE)GetWindowLongPtrW( hWnd, GWLP_HINSTANCE ),
849                                    template, hWnd, AboutDlgProc, (LPARAM)&info );
850     DeleteObject(info.hFont);
851     return bRet;
852 }
853
854 /*************************************************************************
855  * FreeIconList (SHELL32.@)
856  */
857 void WINAPI FreeIconList( DWORD dw )
858 { FIXME("(%lx): stub\n",dw);
859 }
860
861
862 /*************************************************************************
863  * ShellDDEInit (SHELL32.@)
864  */
865 void WINAPI ShellDDEInit(BOOL start)
866 {
867     FIXME("stub: %d\n", start);
868 }
869
870 /***********************************************************************
871  * DllGetVersion [SHELL32.@]
872  *
873  * Retrieves version information of the 'SHELL32.DLL'
874  *
875  * PARAMS
876  *     pdvi [O] pointer to version information structure.
877  *
878  * RETURNS
879  *     Success: S_OK
880  *     Failure: E_INVALIDARG
881  *
882  * NOTES
883  *     Returns version of a shell32.dll from IE4.01 SP1.
884  */
885
886 HRESULT WINAPI SHELL32_DllGetVersion (DLLVERSIONINFO *pdvi)
887 {
888     /* FIXME: shouldn't these values come from the version resource? */
889     if (pdvi->cbSize == sizeof(DLLVERSIONINFO) ||
890      pdvi->cbSize == sizeof(DLLVERSIONINFO2))
891     {
892         pdvi->dwMajorVersion = WINE_FILEVERSION_MAJOR;
893         pdvi->dwMinorVersion = WINE_FILEVERSION_MINOR;
894         pdvi->dwBuildNumber = WINE_FILEVERSION_BUILD;
895         pdvi->dwPlatformID = WINE_FILEVERSION_PLATFORMID;
896         if (pdvi->cbSize == sizeof(DLLVERSIONINFO2))
897         {
898             DLLVERSIONINFO2 *pdvi2 = (DLLVERSIONINFO2 *)pdvi;
899
900             pdvi2->dwFlags = 0;
901             pdvi2->ullVersion = MAKEDLLVERULL(WINE_FILEVERSION_MAJOR,
902                                               WINE_FILEVERSION_MINOR,
903                                               WINE_FILEVERSION_BUILD,
904                                               WINE_FILEVERSION_PLATFORMID);
905         }
906         TRACE("%lu.%lu.%lu.%lu\n",
907            pdvi->dwMajorVersion, pdvi->dwMinorVersion,
908            pdvi->dwBuildNumber, pdvi->dwPlatformID);
909         return S_OK;
910     }
911     else
912         {
913         WARN("wrong DLLVERSIONINFO size from app\n");
914         return E_INVALIDARG;
915     }
916 }
917 /*************************************************************************
918  * global variables of the shell32.dll
919  * all are once per process
920  *
921  */
922 HINSTANCE       shell32_hInstance = 0;
923 HIMAGELIST      ShellSmallIconList = 0;
924 HIMAGELIST      ShellBigIconList = 0;
925
926
927 /*************************************************************************
928  * SHELL32 DllMain
929  *
930  * NOTES
931  *  calling oleinitialize here breaks sone apps.
932  */
933
934 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
935 {
936         TRACE("%p 0x%lx %p\n", hinstDLL, fdwReason, fImpLoad);
937
938         switch (fdwReason)
939         {
940           case DLL_PROCESS_ATTACH:
941             shell32_hInstance = hinstDLL;
942             DisableThreadLibraryCalls(shell32_hInstance);
943
944             /* get full path to this DLL for IExtractIconW_fnGetIconLocation() */
945             GetModuleFileNameW(hinstDLL, swShell32Name, MAX_PATH);
946             swShell32Name[MAX_PATH - 1] = '\0';
947
948             InitCommonControlsEx(NULL);
949
950             SIC_Initialize();
951             SYSTRAY_Init();
952             InitChangeNotifications();
953             break;
954
955           case DLL_PROCESS_DETACH:
956               shell32_hInstance = 0;
957               SIC_Destroy();
958               FreeChangeNotifications();
959               break;
960         }
961         return TRUE;
962 }
963
964 /*************************************************************************
965  * DllInstall         [SHELL32.@]
966  *
967  * PARAMETERS
968  *
969  *    BOOL bInstall - TRUE for install, FALSE for uninstall
970  *    LPCWSTR pszCmdLine - command line (unused by shell32?)
971  */
972
973 HRESULT WINAPI SHELL32_DllInstall(BOOL bInstall, LPCWSTR cmdline)
974 {
975    FIXME("(%s, %s): stub!\n", bInstall ? "TRUE":"FALSE", debugstr_w(cmdline));
976
977    return S_OK;         /* indicate success */
978 }
979
980 /***********************************************************************
981  *              DllCanUnloadNow (SHELL32.@)
982  */
983 HRESULT WINAPI SHELL32_DllCanUnloadNow(void)
984 {
985     FIXME("(void): stub\n");
986
987     return S_FALSE;
988 }