- Generate machine-local IPIDs.
[wine.git] / dlls / shell32 / shell32_main.c
blob18209f6bb04077b19720ad056bee9e7af5903971
1 /*
2 * Shell basics
4 * Copyright 1998 Marcus Meissner
5 * Copyright 1998 Juergen Schmied (jsch) * <juergen.schmied@metronet.de>
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.
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.
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
22 #include "config.h"
24 #include <stdlib.h>
25 #include <string.h>
26 #include <stdarg.h>
27 #include <stdio.h>
29 #define COBJMACROS
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"
43 #include "undocshell.h"
44 #include "pidl.h"
45 #include "shell32_main.h"
46 #include "version.h"
48 #include "wine/debug.h"
49 #include "wine/unicode.h"
51 WINE_DEFAULT_DEBUG_CHANNEL(shell);
53 extern const char * const SHELL_Authors[];
55 #define MORE_DEBUG 1
56 /*************************************************************************
57 * CommandLineToArgvW [SHELL32.@]
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'
79 * Note:
80 * '\t' == 0x0009
81 * ' ' == 0x0020
82 * '"' == 0x0022
83 * '\\' == 0x005c
85 LPWSTR* WINAPI CommandLineToArgvW(LPCWSTR lpCmdline, int* numargs)
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;
95 if (*lpCmdline==0) {
96 /* Return the path to the executable */
97 DWORD len, size=16;
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;
107 if (len < size) break;
108 size*=2;
109 hargv=GlobalReAlloc(hargv, size, 0);
110 argv=GlobalLock(hargv);
112 argv[0]=(LPWSTR)(argv+1);
113 if (numargs)
114 *numargs=2;
116 return argv;
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++;
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;
147 cs++;
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.
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);
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;
169 /* skip the remaining spaces */
170 do {
171 s++;
172 } while (*s==0x0009 || *s==0x0020);
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.
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 '"'
194 d=d-bcount/2-1;
195 *d++='"';
196 s++;
198 bcount=0;
199 } else {
200 /* a regular character */
201 *d++=*s++;
202 bcount=0;
205 if (*arg) {
206 *d='\0';
207 argv[argc++]=arg;
209 if (numargs)
210 *numargs=argc;
212 return argv;
215 /*************************************************************************
216 * SHGetFileInfoA [SHELL32.@]
220 DWORD WINAPI SHGetFileInfoW(LPCWSTR path,DWORD dwFileAttributes,
221 SHFILEINFOW *psfi, UINT sizeofpsfi,
222 UINT flags )
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;
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);
236 if ((flags & SHGFI_USEFILEATTRIBUTES) && (flags & (SHGFI_ATTRIBUTES|SHGFI_EXETYPE|SHGFI_PIDL)))
237 return FALSE;
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;
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);
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];
265 if (flags != SHGFI_EXETYPE) return 0;
267 status = GetBinaryTypeW (szFullPath, &BinaryType);
268 if (!status) return 0;
269 if ((BinaryType == SCS_DOS_BINARY)
270 || (BinaryType == SCS_PIF_BINARY)) return 0x4d5a;
272 hfile = CreateFileW( szFullPath, GENERIC_READ, FILE_SHARE_READ,
273 NULL, OPEN_EXISTING, 0, 0 );
274 if ( hfile == INVALID_HANDLE_VALUE ) return 0;
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.
283 SetFilePointer( hfile, 0, NULL, SEEK_SET );
284 ReadFile( hfile, &mz_header, sizeof(mz_header), &len, NULL );
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 )
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);
298 return IMAGE_NT_SIGNATURE;
300 else if ( *(WORD*)magic == IMAGE_OS2_SIGNATURE )
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;
310 CloseHandle( hfile );
311 return 0;
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;
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 */
322 if (flags & SHGFI_PIDL) {
323 pidl = ILClone((LPCITEMIDLIST)path);
324 } else if (!(flags & SHGFI_USEFILEATTRIBUTES)) {
325 hr = SHILCreateFromPathW(szFullPath, &pidl, &dwAttributes);
328 if ((flags & SHGFI_PIDL) || !(flags & SHGFI_USEFILEATTRIBUTES))
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;
340 /* get the attributes of the child */
341 if (SUCCEEDED(hr) && (flags & SHGFI_ATTRIBUTES))
343 if (!(flags & SHGFI_ATTR_SPECIFIED))
345 psfi->dwAttributes = 0xffffffff;
347 IShellFolder_GetAttributesOf(psfParent, 1, (LPCITEMIDLIST*)&pidlLast, &(psfi->dwAttributes));
350 /* get the displayname */
351 if (SUCCEEDED(hr) && (flags & SHGFI_DISPLAYNAME))
353 if (flags & SHGFI_USEFILEATTRIBUTES)
355 lstrcpyW (psfi->szDisplayName, PathFindFileNameW(szFullPath));
357 else
359 STRRET str;
360 hr = IShellFolder_GetDisplayNameOf(psfParent, pidlLast, SHGDN_INFOLDER, &str);
361 StrRetToStrNW (psfi->szDisplayName, MAX_PATH, &str, pidlLast);
365 /* get the type name */
366 if (SUCCEEDED(hr) && (flags & SHGFI_TYPENAME))
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))
372 char ftype[80];
373 _ILGetFileType(pidlLast, ftype, 80);
374 MultiByteToWideChar(CP_ACP, 0, ftype, -1, psfi->szTypeName, 80 );
376 else
378 if (dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
379 strcatW (psfi->szTypeName, szFile);
380 else
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 )))
387 lstrcpynW (psfi->szTypeName, sTemp, 64);
388 strcatW (psfi->szTypeName, szDashFile);
394 /* ### icons ###*/
395 if (flags & SHGFI_LINKOVERLAY)
396 FIXME("set icon to link, stub\n");
398 if (flags & SHGFI_SELECTED)
399 FIXME("set icon to selected, stub\n");
401 if (flags & SHGFI_SHELLICONSIZE)
402 FIXME("set icon to shell size, stub\n");
404 /* get the iconlocation */
405 if (SUCCEEDED(hr) && (flags & SHGFI_ICONLOCATION ))
407 UINT uDummy,uFlags;
408 hr = IShellFolder_GetUIObjectOf(psfParent, 0, 1, (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconA, &uDummy, (LPVOID*)&pei);
410 if (SUCCEEDED(hr))
412 hr = IExtractIconW_GetIconLocation(pei, (flags & SHGFI_OPENICON)? GIL_OPENICON : 0,szLocation, MAX_PATH, &iIndex, &uFlags);
413 psfi->iIcon = iIndex;
415 if(uFlags != GIL_NOTFILENAME)
416 lstrcpyW (psfi->szDisplayName, szLocation);
417 else
418 ret = FALSE;
420 IExtractIconA_Release(pei);
424 /* get icon index (or load icon)*/
425 if (SUCCEEDED(hr) && (flags & (SHGFI_ICON | SHGFI_SYSICONINDEX)))
428 if (flags & SHGFI_USEFILEATTRIBUTES)
430 WCHAR sTemp [MAX_PATH];
431 WCHAR * szExt;
432 DWORD dwNr=0;
434 lstrcpynW(sTemp, szFullPath, MAX_PATH);
436 if (dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
437 psfi->iIcon = 2;
438 else
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))
446 if (!lstrcmpW(p1W,sTemp)) /* icon is in the file */
447 strcpyW(sTemp, szFullPath);
449 if (flags & SHGFI_SYSICONINDEX)
451 psfi->iIcon = SIC_GetIconIndex(sTemp,dwNr);
452 if (psfi->iIcon == -1) psfi->iIcon = 0;
454 else
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;
466 else
468 if (!(PidlToSicIndex(psfParent, pidlLast, !(flags & SHGFI_SMALLICON),
469 (flags & SHGFI_OPENICON)? GIL_OPENICON : 0, &(psfi->iIcon))))
471 ret = FALSE;
474 if (ret)
476 ret = (DWORD) ((flags & SHGFI_SMALLICON) ? ShellSmallIconList : ShellBigIconList);
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);
484 if (flags & (SHGFI_UNKNOWN1 | SHGFI_UNKNOWN2 | SHGFI_UNKNOWN3))
485 FIXME("unknown attribute!\n");
487 if (psfParent)
488 IShellFolder_Release(psfParent);
490 if (hr != S_OK)
491 ret = FALSE;
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;
501 /*************************************************************************
502 * SHGetFileInfoW [SHELL32.@]
505 DWORD WINAPI SHGetFileInfoA(LPCSTR path,DWORD dwFileAttributes,
506 SHFILEINFOA *psfi, UINT sizeofpsfi,
507 UINT flags )
509 INT len;
510 LPWSTR temppath;
511 DWORD ret;
512 SHFILEINFOW temppsfi;
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);
523 if(psfi && (flags & SHGFI_ATTR_SPECIFIED))
524 temppsfi.dwAttributes=psfi->dwAttributes;
526 ret = SHGetFileInfoW(temppath, dwFileAttributes, (psfi == NULL)? NULL : &temppsfi, sizeof(temppsfi), flags);
528 if (psfi)
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);
541 if(!(flags & SHGFI_PIDL)) HeapFree(GetProcessHeap(), 0, temppath);
542 return ret;
545 /*************************************************************************
546 * DuplicateIcon [SHELL32.@]
548 HICON WINAPI DuplicateIcon( HINSTANCE hInstance, HICON hIcon)
550 ICONINFO IconInfo;
551 HICON hDupIcon = 0;
553 TRACE("(%p, %p)\n", hInstance, hIcon);
555 if(GetIconInfo(hIcon, &IconInfo))
557 hDupIcon = CreateIconIndirect(&IconInfo);
559 /* clean up hbmMask and hbmColor */
560 DeleteObject(IconInfo.hbmMask);
561 DeleteObject(IconInfo.hbmColor);
564 return hDupIcon;
567 /*************************************************************************
568 * ExtractIconA [SHELL32.@]
570 HICON WINAPI ExtractIconA(HINSTANCE hInstance, LPCSTR lpszFile, UINT nIconIndex)
572 HICON ret;
573 INT len = MultiByteToWideChar(CP_ACP, 0, lpszFile, -1, NULL, 0);
574 LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
576 TRACE("%p %s %d\n", hInstance, lpszFile, nIconIndex);
578 MultiByteToWideChar(CP_ACP, 0, lpszFile, -1, lpwstrFile, len);
579 ret = ExtractIconW(hInstance, lpwstrFile, nIconIndex);
580 HeapFree(GetProcessHeap(), 0, lpwstrFile);
581 return ret;
584 /*************************************************************************
585 * ExtractIconW [SHELL32.@]
587 HICON WINAPI ExtractIconW(HINSTANCE hInstance, LPCWSTR lpszFile, UINT nIconIndex)
589 HICON hIcon = NULL;
590 UINT ret;
591 UINT cx = GetSystemMetrics(SM_CXICON), cy = GetSystemMetrics(SM_CYICON);
593 TRACE("%p %s %d\n", hInstance, debugstr_w(lpszFile), nIconIndex);
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;
601 else
602 ret = PrivateExtractIconsW(lpszFile, nIconIndex, cx, cy, &hIcon, NULL, 1, LR_DEFAULTCOLOR);
604 if (ret == 0xFFFFFFFF)
605 return (HICON)1;
606 else if (ret > 0 && hIcon)
607 return hIcon;
608 return NULL;
611 typedef struct
613 LPCWSTR szApp;
614 LPCWSTR szOtherStuff;
615 HICON hIcon;
616 HFONT hFont;
617 } ABOUT_INFO;
619 #define IDC_STATIC_TEXT1 100
620 #define IDC_STATIC_TEXT2 101
621 #define IDC_LISTBOX 99
622 #define IDC_WINE_TEXT 98
624 #define DROP_FIELD_TOP (-15)
625 #define DROP_FIELD_HEIGHT 15
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;
635 return FALSE;
638 /*************************************************************************
639 * SHAppBarMessage [SHELL32.@]
641 UINT WINAPI SHAppBarMessage(DWORD msg, PAPPBARDATA data)
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;
683 return FALSE;
686 /*************************************************************************
687 * SHHelpShortcuts_RunDLL [SHELL32.@]
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);
694 return 0;
697 /*************************************************************************
698 * SHLoadInProc [SHELL32.@]
699 * Create an instance of specified object class from within
700 * the shell process and release it immediately
703 HRESULT WINAPI SHLoadInProc (REFCLSID rclsid)
705 void *ptr = NULL;
707 TRACE("%s\n", debugstr_guid(rclsid));
709 CoCreateInstance(rclsid, NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown,&ptr);
710 if(ptr)
712 IUnknown * pUnk = ptr;
713 IUnknown_Release(pUnk);
714 return NOERROR;
716 return DISP_E_MEMBERNOTFOUND;
719 /*************************************************************************
720 * AboutDlgProc (internal)
722 INT_PTR CALLBACK AboutDlgProc( HWND hWnd, UINT msg, WPARAM wParam,
723 LPARAM lParam )
725 HWND hWndCtl;
727 TRACE("\n");
729 switch(msg)
731 case WM_INITDIALOG:
733 ABOUT_INFO *info = (ABOUT_INFO *)lParam;
734 WCHAR Template[512], AppTitle[512];
736 if (info)
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)
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++;
756 SendMessageW( hWndCtl, WM_SETREDRAW, 1, 0 );
759 return 1;
761 case WM_PAINT:
762 { RECT rect;
763 PAINTSTRUCT ps;
764 HDC hDC = BeginPaint( hWnd, &ps );
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 );
771 EndPaint( hWnd, &ps );
773 break;
775 case WM_COMMAND:
776 if (wParam == IDOK || wParam == IDCANCEL)
778 EndDialog(hWnd, TRUE);
779 return TRUE;
781 break;
782 case WM_CLOSE:
783 EndDialog(hWnd, TRUE);
784 break;
787 return 0;
791 /*************************************************************************
792 * ShellAboutA [SHELL32.288]
794 BOOL WINAPI ShellAboutA( HWND hWnd, LPCSTR szApp, LPCSTR szOtherStuff, HICON hIcon )
796 BOOL ret;
797 LPWSTR appW = NULL, otherW = NULL;
798 int len;
800 if (szApp)
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);
806 if (szOtherStuff)
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);
813 ret = ShellAboutW(hWnd, appW, otherW, hIcon);
815 HeapFree(GetProcessHeap(), 0, otherW);
816 HeapFree(GetProcessHeap(), 0, appW);
817 return ret;
821 /*************************************************************************
822 * ShellAboutW [SHELL32.289]
824 BOOL WINAPI ShellAboutW( HWND hWnd, LPCWSTR szApp, LPCWSTR szOtherStuff,
825 HICON hIcon )
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};
835 TRACE("\n");
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 );
845 SystemParametersInfoW( SPI_GETICONTITLELOGFONT, 0, &logFont, 0 );
846 info.hFont = CreateFontIndirectW( &logFont );
848 bRet = DialogBoxIndirectParamW((HINSTANCE)GetWindowLongPtrW( hWnd, GWLP_HINSTANCE ),
849 template, hWnd, AboutDlgProc, (LPARAM)&info );
850 DeleteObject(info.hFont);
851 return bRet;
854 /*************************************************************************
855 * FreeIconList (SHELL32.@)
857 void WINAPI FreeIconList( DWORD dw )
858 { FIXME("(%lx): stub\n",dw);
862 /*************************************************************************
863 * ShellDDEInit (SHELL32.@)
865 void WINAPI ShellDDEInit(BOOL start)
867 FIXME("stub: %d\n", start);
870 /***********************************************************************
871 * DllGetVersion [SHELL32.@]
873 * Retrieves version information of the 'SHELL32.DLL'
875 * PARAMS
876 * pdvi [O] pointer to version information structure.
878 * RETURNS
879 * Success: S_OK
880 * Failure: E_INVALIDARG
882 * NOTES
883 * Returns version of a shell32.dll from IE4.01 SP1.
886 HRESULT WINAPI SHELL32_DllGetVersion (DLLVERSIONINFO *pdvi)
888 /* FIXME: shouldn't these values come from the version resource? */
889 if (pdvi->cbSize == sizeof(DLLVERSIONINFO) ||
890 pdvi->cbSize == sizeof(DLLVERSIONINFO2))
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))
898 DLLVERSIONINFO2 *pdvi2 = (DLLVERSIONINFO2 *)pdvi;
900 pdvi2->dwFlags = 0;
901 pdvi2->ullVersion = MAKEDLLVERULL(WINE_FILEVERSION_MAJOR,
902 WINE_FILEVERSION_MINOR,
903 WINE_FILEVERSION_BUILD,
904 WINE_FILEVERSION_PLATFORMID);
906 TRACE("%lu.%lu.%lu.%lu\n",
907 pdvi->dwMajorVersion, pdvi->dwMinorVersion,
908 pdvi->dwBuildNumber, pdvi->dwPlatformID);
909 return S_OK;
911 else
913 WARN("wrong DLLVERSIONINFO size from app\n");
914 return E_INVALIDARG;
917 /*************************************************************************
918 * global variables of the shell32.dll
919 * all are once per process
922 HINSTANCE shell32_hInstance = 0;
923 HIMAGELIST ShellSmallIconList = 0;
924 HIMAGELIST ShellBigIconList = 0;
927 /*************************************************************************
928 * SHELL32 DllMain
930 * NOTES
931 * calling oleinitialize here breaks sone apps.
934 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
936 TRACE("%p 0x%lx %p\n", hinstDLL, fdwReason, fImpLoad);
938 switch (fdwReason)
940 case DLL_PROCESS_ATTACH:
941 shell32_hInstance = hinstDLL;
942 DisableThreadLibraryCalls(shell32_hInstance);
944 /* get full path to this DLL for IExtractIconW_fnGetIconLocation() */
945 GetModuleFileNameW(hinstDLL, swShell32Name, MAX_PATH);
946 swShell32Name[MAX_PATH - 1] = '\0';
948 InitCommonControlsEx(NULL);
950 SIC_Initialize();
951 SYSTRAY_Init();
952 InitChangeNotifications();
953 break;
955 case DLL_PROCESS_DETACH:
956 shell32_hInstance = 0;
957 SIC_Destroy();
958 FreeChangeNotifications();
959 break;
961 return TRUE;
964 /*************************************************************************
965 * DllInstall [SHELL32.@]
967 * PARAMETERS
969 * BOOL bInstall - TRUE for install, FALSE for uninstall
970 * LPCWSTR pszCmdLine - command line (unused by shell32?)
973 HRESULT WINAPI SHELL32_DllInstall(BOOL bInstall, LPCWSTR cmdline)
975 FIXME("(%s, %s): stub!\n", bInstall ? "TRUE":"FALSE", debugstr_w(cmdline));
977 return S_OK; /* indicate success */
980 /***********************************************************************
981 * DllCanUnloadNow (SHELL32.@)
983 HRESULT WINAPI SHELL32_DllCanUnloadNow(void)
985 FIXME("(void): stub\n");
987 return S_FALSE;