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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
43 #include "undocshell.h"
45 #include "shell32_main.h"
49 #include "wine/debug.h"
50 #include "wine/unicode.h"
52 WINE_DEFAULT_DEBUG_CHANNEL(shell);
54 extern const char * const SHELL_Authors[];
57 /*************************************************************************
58 * CommandLineToArgvW [SHELL32.@]
60 * We must interpret the quotes in the command line to rebuild the argv
62 * - arguments are separated by spaces or tabs
63 * - quotes serve as optional argument delimiters
65 * - escaped quotes must be converted back to '"'
67 * - an odd number of '\'s followed by '"' correspond to half that number
68 * of '\' followed by a '"' (extension of the above)
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
86 LPWSTR* WINAPI CommandLineToArgvW(LPCWSTR lpCmdline, int* numargs)
98 /* Return the path to the executable */
101 hargv=GlobalAlloc(size, 0);
102 argv=GlobalLock(hargv);
105 len = GetModuleFileNameW(0, (LPWSTR)(argv+1), size-sizeof(LPWSTR));
111 if (len < size) break;
113 hargv=GlobalReAlloc(hargv, size, 0);
114 argv=GlobalLock(hargv);
116 argv[0]=(LPWSTR)(argv+1);
123 /* to get a writeable copy */
130 if (*cs==0 || ((*cs==0x0009 || *cs==0x0020) && !in_quotes))
134 /* skip the remaining spaces */
135 while (*cs==0x0009 || *cs==0x0020) {
143 else if (*cs==0x005c)
145 /* '\', count them */
148 else if ((*cs==0x0022) && ((bcount & 1)==0))
151 in_quotes=!in_quotes;
156 /* a regular character */
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.
164 hargv=GlobalAlloc(0, argc*sizeof(LPWSTR)+(strlenW(lpCmdline)+1)*sizeof(WCHAR));
165 argv=GlobalLock(hargv);
168 cmdline=(LPWSTR)(argv+argc);
169 strcpyW(cmdline, lpCmdline);
177 if ((*s==0x0009 || *s==0x0020) && !in_quotes)
179 /* Close the argument and copy it */
183 /* skip the remaining spaces */
186 } while (*s==0x0009 || *s==0x0020);
188 /* Start with a new argument */
203 /* Preceded by an even number of '\', this is half that
204 * number of '\', plus a quote which we erase.
207 in_quotes=!in_quotes;
212 /* Preceded by an odd number of '\', this is half that
213 * number of '\' followed by a '"'
223 /* a regular character */
239 static DWORD shgfi_get_exe_type(LPCWSTR szFullPath)
244 IMAGE_DOS_HEADER mz_header;
249 status = GetBinaryTypeW (szFullPath, &BinaryType);
252 if (BinaryType == SCS_DOS_BINARY || BinaryType == SCS_PIF_BINARY)
255 hfile = CreateFileW( szFullPath, GENERIC_READ, FILE_SHARE_READ,
256 NULL, OPEN_EXISTING, 0, 0 );
257 if ( hfile == INVALID_HANDLE_VALUE )
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.
268 SetFilePointer( hfile, 0, NULL, SEEK_SET );
269 ReadFile( hfile, &mz_header, sizeof(mz_header), &len, NULL );
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 )
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)
280 return IMAGE_NT_SIGNATURE |
281 (nt.OptionalHeader.MajorSubsystemVersion << 24) |
282 (nt.OptionalHeader.MinorSubsystemVersion << 16);
284 return IMAGE_NT_SIGNATURE;
286 else if ( *(WORD*)magic == IMAGE_OS2_SIGNATURE )
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);
296 CloseHandle( hfile );
300 /*************************************************************************
301 * SHELL_IsShortcut [internal]
303 * Decide if an item id list points to a shell shortcut
305 BOOL SHELL_IsShortcut(LPCITEMIDLIST pidlLast)
307 char szTemp[MAX_PATH];
311 if (_ILGetExtension(pidlLast, szTemp, MAX_PATH) &&
312 HCR_MapTypeToValueA(szTemp, szTemp, MAX_PATH, TRUE))
314 if (ERROR_SUCCESS == RegOpenKeyExA(HKEY_CLASSES_ROOT, szTemp, 0, KEY_QUERY_VALUE, &keyCls))
316 if (ERROR_SUCCESS == RegQueryValueExA(keyCls, "IsShortcut", NULL, NULL, NULL, NULL))
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)
333 /*************************************************************************
334 * SHGetFileInfoW [SHELL32.@]
337 DWORD_PTR WINAPI SHGetFileInfoW(LPCWSTR path,DWORD dwFileAttributes,
338 SHFILEINFOW *psfi, UINT sizeofpsfi, UINT flags )
340 WCHAR szLocation[MAX_PATH], szFullPath[MAX_PATH];
342 DWORD_PTR ret = TRUE;
343 DWORD dwAttributes = 0;
344 IShellFolder * psfParent = NULL;
345 IExtractIconW * pei = NULL;
346 LPITEMIDLIST pidlLast = NULL, pidl = NULL;
348 BOOL IconNotYetLoaded=TRUE;
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);
355 if ( (flags & SHGFI_USEFILEATTRIBUTES) &&
356 (flags & (SHGFI_ATTRIBUTES|SHGFI_EXETYPE|SHGFI_PIDL)))
359 /* windows initializes this values regardless of the flags */
362 psfi->szDisplayName[0] = '\0';
363 psfi->szTypeName[0] = '\0';
367 if (!(flags & SHGFI_PIDL))
369 /* SHGetFileInfo should work with absolute and relative paths */
370 if (PathIsRelativeW(path))
372 GetCurrentDirectoryW(MAX_PATH, szLocation);
373 PathCombineW(szFullPath, szLocation, path);
377 lstrcpynW(szFullPath, path, MAX_PATH);
381 if (flags & SHGFI_EXETYPE)
383 if (flags != SHGFI_EXETYPE)
385 return shgfi_get_exe_type(szFullPath);
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
396 * translate the path into a pidl only when SHGFI_USEFILEATTRIBUTES
398 * The pidl functions fail on not existing file names
401 if (flags & SHGFI_PIDL)
403 pidl = ILClone((LPCITEMIDLIST)path);
405 else if (!(flags & SHGFI_USEFILEATTRIBUTES))
407 hr = SHILCreateFromPathW(szFullPath, &pidl, &dwAttributes);
410 if ((flags & SHGFI_PIDL) || !(flags & SHGFI_USEFILEATTRIBUTES))
412 /* get the parent shellfolder */
415 hr = SHBindToParent( pidl, &IID_IShellFolder, (LPVOID*)&psfParent,
416 (LPCITEMIDLIST*)&pidlLast );
418 pidlLast = ILClone(pidlLast);
423 ERR("pidl is null!\n");
428 /* get the attributes of the child */
429 if (SUCCEEDED(hr) && (flags & SHGFI_ATTRIBUTES))
431 if (!(flags & SHGFI_ATTR_SPECIFIED))
433 psfi->dwAttributes = 0xffffffff;
435 IShellFolder_GetAttributesOf( psfParent, 1, (LPCITEMIDLIST*)&pidlLast,
436 &(psfi->dwAttributes) );
439 /* get the displayname */
440 if (SUCCEEDED(hr) && (flags & SHGFI_DISPLAYNAME))
442 if (flags & SHGFI_USEFILEATTRIBUTES)
444 lstrcpyW (psfi->szDisplayName, PathFindFileNameW(szFullPath));
449 hr = IShellFolder_GetDisplayNameOf( psfParent, pidlLast,
450 SHGDN_INFOLDER, &str);
451 StrRetToStrNW (psfi->szDisplayName, MAX_PATH, &str, pidlLast);
455 /* get the type name */
456 if (SUCCEEDED(hr) && (flags & SHGFI_TYPENAME))
458 static const WCHAR szFile[] = { 'F','i','l','e',0 };
459 static const WCHAR szDashFile[] = { '-','f','i','l','e',0 };
461 if (!(flags & SHGFI_USEFILEATTRIBUTES))
465 _ILGetFileType(pidlLast, ftype, 80);
466 MultiByteToWideChar(CP_ACP, 0, ftype, -1, psfi->szTypeName, 80 );
470 if (dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
471 strcatW (psfi->szTypeName, szFile);
476 lstrcpyW(sTemp,PathFindExtensionW(szFullPath));
477 if (!( HCR_MapTypeToValueW(sTemp, sTemp, 64, TRUE) &&
478 HCR_MapTypeToValueW(sTemp, psfi->szTypeName, 80, FALSE )))
480 lstrcpynW (psfi->szTypeName, sTemp, 64);
481 strcatW (psfi->szTypeName, szDashFile);
488 if (flags & SHGFI_OPENICON)
489 uGilFlags |= GIL_OPENICON;
491 if (flags & SHGFI_LINKOVERLAY)
492 uGilFlags |= GIL_FORSHORTCUT;
493 else if ((flags&SHGFI_ADDOVERLAYS) ||
494 (flags&(SHGFI_ICON|SHGFI_SMALLICON))==SHGFI_ICON)
496 if (SHELL_IsShortcut(pidlLast))
497 uGilFlags |= GIL_FORSHORTCUT;
500 if (flags & SHGFI_OVERLAYINDEX)
501 FIXME("SHGFI_OVERLAYINDEX unhandled\n");
503 if (flags & SHGFI_SELECTED)
504 FIXME("set icon to selected, stub\n");
506 if (flags & SHGFI_SHELLICONSIZE)
507 FIXME("set icon to shell size, stub\n");
509 /* get the iconlocation */
510 if (SUCCEEDED(hr) && (flags & SHGFI_ICONLOCATION ))
514 hr = IShellFolder_GetUIObjectOf(psfParent, 0, 1,
515 (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconW,
516 &uDummy, (LPVOID*)&pei);
519 hr = IExtractIconW_GetIconLocation(pei, uGilFlags,
520 szLocation, MAX_PATH, &iIndex, &uFlags);
521 psfi->iIcon = iIndex;
523 if (!(uFlags & GIL_NOTFILENAME))
524 lstrcpyW (psfi->szDisplayName, szLocation);
528 IExtractIconW_Release(pei);
532 /* get icon index (or load icon)*/
533 if (SUCCEEDED(hr) && (flags & (SHGFI_ICON | SHGFI_SYSICONINDEX)))
535 if (flags & SHGFI_USEFILEATTRIBUTES)
537 WCHAR sTemp [MAX_PATH];
541 lstrcpynW(sTemp, szFullPath, MAX_PATH);
543 if (dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
544 psfi->iIcon = SIC_GetIconIndex(swShell32Name, -IDI_SHELL_FOLDER, 0);
547 static const WCHAR p1W[] = {'%','1',0};
550 szExt = (LPWSTR) PathFindExtensionW(sTemp);
552 HCR_MapTypeToValueW(szExt, sTemp, MAX_PATH, TRUE) &&
553 HCR_GetDefaultIconW(sTemp, sTemp, MAX_PATH, &icon_idx))
555 if (!lstrcmpW(p1W,sTemp)) /* icon is in the file */
556 strcpyW(sTemp, szFullPath);
558 if (flags & SHGFI_SYSICONINDEX)
560 psfi->iIcon = SIC_GetIconIndex(sTemp,icon_idx,0);
561 if (psfi->iIcon == -1)
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);
573 PrivateExtractIconsW( sTemp, icon_idx,
574 GetSystemMetrics( SM_CXICON),
575 GetSystemMetrics( SM_CYICON),
576 &psfi->hIcon, 0, 1, 0);
577 psfi->iIcon = icon_idx;
584 if (!(PidlToSicIndex(psfParent, pidlLast, !(flags & SHGFI_SMALLICON),
585 uGilFlags, &(psfi->iIcon))))
592 if (flags & SHGFI_SMALLICON)
593 ret = (DWORD_PTR) ShellSmallIconList;
595 ret = (DWORD_PTR) ShellBigIconList;
600 if (SUCCEEDED(hr) && (flags & SHGFI_ICON) && IconNotYetLoaded)
602 if (flags & SHGFI_SMALLICON)
603 psfi->hIcon = ImageList_GetIcon( ShellSmallIconList, psfi->iIcon, ILD_NORMAL);
605 psfi->hIcon = ImageList_GetIcon( ShellBigIconList, psfi->iIcon, ILD_NORMAL);
608 if (flags & ~SHGFI_KNOWN_FLAGS)
609 FIXME("unknown flags %08x\n", flags & ~SHGFI_KNOWN_FLAGS);
612 IShellFolder_Release(psfParent);
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);
629 /*************************************************************************
630 * SHGetFileInfoA [SHELL32.@]
632 DWORD_PTR WINAPI SHGetFileInfoA(LPCSTR path,DWORD dwFileAttributes,
633 SHFILEINFOA *psfi, UINT sizeofpsfi,
637 LPWSTR temppath = NULL;
640 SHFILEINFOW temppsfi;
642 if (flags & SHGFI_PIDL)
644 /* path contains a pidl */
645 pathW = (LPCWSTR)path;
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);
655 if (psfi && (flags & SHGFI_ATTR_SPECIFIED))
656 temppsfi.dwAttributes=psfi->dwAttributes;
659 ret = SHGetFileInfoW(pathW, dwFileAttributes, NULL, sizeof(temppsfi), flags);
661 ret = SHGetFileInfoW(pathW, dwFileAttributes, &temppsfi, sizeof(temppsfi), flags);
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))
673 WideCharToMultiByte(CP_ACP, 0, temppsfi.szDisplayName, -1,
674 psfi->szDisplayName, sizeof(psfi->szDisplayName), NULL, NULL);
676 if(flags & SHGFI_TYPENAME)
678 WideCharToMultiByte(CP_ACP, 0, temppsfi.szTypeName, -1,
679 psfi->szTypeName, sizeof(psfi->szTypeName), NULL, NULL);
683 HeapFree(GetProcessHeap(), 0, temppath);
688 /*************************************************************************
689 * DuplicateIcon [SHELL32.@]
691 HICON WINAPI DuplicateIcon( HINSTANCE hInstance, HICON hIcon)
696 TRACE("%p %p\n", hInstance, hIcon);
698 if (GetIconInfo(hIcon, &IconInfo))
700 hDupIcon = CreateIconIndirect(&IconInfo);
702 /* clean up hbmMask and hbmColor */
703 DeleteObject(IconInfo.hbmMask);
704 DeleteObject(IconInfo.hbmColor);
710 /*************************************************************************
711 * ExtractIconA [SHELL32.@]
713 HICON WINAPI ExtractIconA(HINSTANCE hInstance, LPCSTR lpszFile, UINT nIconIndex)
716 INT len = MultiByteToWideChar(CP_ACP, 0, lpszFile, -1, NULL, 0);
717 LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
719 TRACE("%p %s %d\n", hInstance, lpszFile, nIconIndex);
721 MultiByteToWideChar(CP_ACP, 0, lpszFile, -1, lpwstrFile, len);
722 ret = ExtractIconW(hInstance, lpwstrFile, nIconIndex);
723 HeapFree(GetProcessHeap(), 0, lpwstrFile);
728 /*************************************************************************
729 * ExtractIconW [SHELL32.@]
731 HICON WINAPI ExtractIconW(HINSTANCE hInstance, LPCWSTR lpszFile, UINT nIconIndex)
735 UINT cx = GetSystemMetrics(SM_CXICON), cy = GetSystemMetrics(SM_CYICON);
737 TRACE("%p %s %d\n", hInstance, debugstr_w(lpszFile), nIconIndex);
739 if (nIconIndex == 0xFFFFFFFF)
741 ret = PrivateExtractIconsW(lpszFile, 0, cx, cy, NULL, NULL, 0, LR_DEFAULTCOLOR);
742 if (ret != 0xFFFFFFFF && ret)
743 return (HICON)(UINT_PTR)ret;
747 ret = PrivateExtractIconsW(lpszFile, nIconIndex, cx, cy, &hIcon, NULL, 1, LR_DEFAULTCOLOR);
749 if (ret == 0xFFFFFFFF)
751 else if (ret > 0 && hIcon)
757 /*************************************************************************
758 * Printer_LoadIconsW [SHELL32.205]
760 VOID WINAPI Printer_LoadIconsW(LPCWSTR wsPrinterName, HICON * pLargeIcon, HICON * pSmallIcon)
762 INT iconindex=IDI_SHELL_PRINTER;
764 TRACE("(%s, %p, %p)\n", debugstr_w(wsPrinterName), pLargeIcon, pSmallIcon);
766 /* We should check if wsPrinterName is
767 1. the Default Printer or not
769 3. a Local Printer or a Network-Printer
770 and use different Icons
772 if((wsPrinterName != NULL) && (wsPrinterName[0] != 0))
774 FIXME("(select Icon by PrinterName %s not implemented)\n", debugstr_w(wsPrinterName));
777 if(pLargeIcon != NULL)
778 *pLargeIcon = LoadImageW(shell32_hInstance,
779 (LPCWSTR) MAKEINTRESOURCE(iconindex), IMAGE_ICON,
780 0, 0, LR_DEFAULTCOLOR|LR_DEFAULTSIZE);
782 if(pSmallIcon != NULL)
783 *pSmallIcon = LoadImageW(shell32_hInstance,
784 (LPCWSTR) MAKEINTRESOURCE(iconindex), IMAGE_ICON,
785 16, 16, LR_DEFAULTCOLOR);
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
794 BOOL WINAPI Printers_RegisterWindowW(LPCWSTR wsPrinter, DWORD dwType,
795 HANDLE * phClassPidl, HWND * phwnd)
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);
804 /*************************************************************************
805 * Printers_UnregisterWindow [SHELL32.214]
807 VOID WINAPI Printers_UnregisterWindow(HANDLE hClassPidl, HWND hwnd)
809 FIXME("(%p, %p) stub!\n", hClassPidl, hwnd);
812 /*************************************************************************/
817 LPCWSTR szOtherStuff;
822 #define IDC_STATIC_TEXT1 100
823 #define IDC_STATIC_TEXT2 101
824 #define IDC_LISTBOX 99
825 #define IDC_WINE_TEXT 98
827 #define DROP_FIELD_TOP (-15)
828 #define DROP_FIELD_HEIGHT 15
830 static BOOL __get_dropline( HWND hWnd, LPRECT lprect )
832 HWND hWndCtl = GetDlgItem(hWnd, IDC_WINE_TEXT);
836 GetWindowRect( hWndCtl, lprect );
837 MapWindowPoints( 0, hWnd, (LPPOINT)lprect, 2 );
838 lprect->bottom = (lprect->top += DROP_FIELD_TOP);
844 /*************************************************************************
845 * SHAppBarMessage [SHELL32.@]
847 UINT WINAPI SHAppBarMessage(DWORD msg, PAPPBARDATA data)
849 int width=data->rc.right - data->rc.left;
850 int height=data->rc.bottom - data->rc.top;
856 return ABS_ALWAYSONTOP | ABS_AUTOHIDE;
857 case ABM_GETTASKBARPOS:
858 GetWindowRect(data->hWnd, &rec);
862 SetActiveWindow(data->hWnd);
864 case ABM_GETAUTOHIDEBAR:
865 data->hWnd=GetActiveWindow();
868 SetWindowPos(data->hWnd,HWND_TOP,rec.left,rec.top,
869 width,height,SWP_SHOWWINDOW);
872 GetWindowRect(data->hWnd, &(data->rc));
875 FIXME("ABM_REMOVE broken\n");
876 /* FIXME: this is wrong; should it be DestroyWindow instead? */
877 /*CloseHandle(data->hWnd);*/
879 case ABM_SETAUTOHIDEBAR:
880 SetWindowPos(data->hWnd,HWND_TOP,rec.left+1000,rec.top,
881 width,height,SWP_SHOWWINDOW);
884 data->uEdge=(ABE_RIGHT | ABE_LEFT);
885 SetWindowPos(data->hWnd,HWND_TOP,data->rc.left,data->rc.top,
886 width,height,SWP_SHOWWINDOW);
888 case ABM_WINDOWPOSCHANGED:
894 /*************************************************************************
895 * SHHelpShortcuts_RunDLLA [SHELL32.@]
898 DWORD WINAPI SHHelpShortcuts_RunDLLA(DWORD dwArg1, DWORD dwArg2, DWORD dwArg3, DWORD dwArg4)
900 FIXME("(%lx, %lx, %lx, %lx) stub!\n", dwArg1, dwArg2, dwArg3, dwArg4);
904 /*************************************************************************
905 * SHHelpShortcuts_RunDLLA [SHELL32.@]
908 DWORD WINAPI SHHelpShortcuts_RunDLLW(DWORD dwArg1, DWORD dwArg2, DWORD dwArg3, DWORD dwArg4)
910 FIXME("(%lx, %lx, %lx, %lx) stub!\n", dwArg1, dwArg2, dwArg3, dwArg4);
914 /*************************************************************************
915 * SHLoadInProc [SHELL32.@]
916 * Create an instance of specified object class from within
917 * the shell process and release it immediately
919 HRESULT WINAPI SHLoadInProc (REFCLSID rclsid)
923 TRACE("%s\n", debugstr_guid(rclsid));
925 CoCreateInstance(rclsid, NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown,&ptr);
928 IUnknown * pUnk = ptr;
929 IUnknown_Release(pUnk);
932 return DISP_E_MEMBERNOTFOUND;
935 /*************************************************************************
936 * AboutDlgProc (internal)
938 INT_PTR CALLBACK AboutDlgProc( HWND hWnd, UINT msg, WPARAM wParam,
949 ABOUT_INFO *info = (ABOUT_INFO *)lParam;
950 WCHAR Template[512], AppTitle[512];
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 );
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 );
972 SendMessageW( hWndCtl, WM_SETREDRAW, 1, 0 );
981 HDC hDC = BeginPaint( hWnd, &ps );
983 if (__get_dropline( hWnd, &rect ))
985 SelectObject( hDC, GetStockObject( BLACK_PEN ) );
986 MoveToEx( hDC, rect.left, rect.top, NULL );
987 LineTo( hDC, rect.right, rect.bottom );
989 EndPaint( hWnd, &ps );
994 if (wParam == IDOK || wParam == IDCANCEL)
996 EndDialog(hWnd, TRUE);
1001 EndDialog(hWnd, TRUE);
1009 /*************************************************************************
1010 * ShellAboutA [SHELL32.288]
1012 BOOL WINAPI ShellAboutA( HWND hWnd, LPCSTR szApp, LPCSTR szOtherStuff, HICON hIcon )
1015 LPWSTR appW = NULL, otherW = NULL;
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);
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);
1031 ret = ShellAboutW(hWnd, appW, otherW, hIcon);
1033 HeapFree(GetProcessHeap(), 0, otherW);
1034 HeapFree(GetProcessHeap(), 0, appW);
1039 /*************************************************************************
1040 * ShellAboutW [SHELL32.289]
1042 BOOL WINAPI ShellAboutW( HWND hWnd, LPCWSTR szApp, LPCWSTR szOtherStuff,
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};
1055 if(!(hRes = FindResourceW(shell32_hInstance, wszSHELL_ABOUT_MSGBOX, (LPWSTR)RT_DIALOG)))
1057 if(!(template = (LPVOID)LoadResource(shell32_hInstance, hRes)))
1060 info.szOtherStuff = szOtherStuff;
1061 info.hIcon = hIcon ? hIcon : LoadIconW( 0, (LPWSTR)IDI_WINLOGO );
1063 SystemParametersInfoW( SPI_GETICONTITLELOGFONT, 0, &logFont, 0 );
1064 info.hFont = CreateFontIndirectW( &logFont );
1066 bRet = DialogBoxIndirectParamW((HINSTANCE)GetWindowLongPtrW( hWnd, GWLP_HINSTANCE ),
1067 template, hWnd, AboutDlgProc, (LPARAM)&info );
1068 DeleteObject(info.hFont);
1072 /*************************************************************************
1073 * FreeIconList (SHELL32.@)
1075 void WINAPI FreeIconList( DWORD dw )
1077 FIXME("%lx: stub\n",dw);
1081 /***********************************************************************
1082 * DllGetVersion [SHELL32.@]
1084 * Retrieves version information of the 'SHELL32.DLL'
1087 * pdvi [O] pointer to version information structure.
1091 * Failure: E_INVALIDARG
1094 * Returns version of a shell32.dll from IE4.01 SP1.
1097 HRESULT WINAPI DllGetVersion (DLLVERSIONINFO *pdvi)
1099 /* FIXME: shouldn't these values come from the version resource? */
1100 if (pdvi->cbSize == sizeof(DLLVERSIONINFO) ||
1101 pdvi->cbSize == sizeof(DLLVERSIONINFO2))
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))
1109 DLLVERSIONINFO2 *pdvi2 = (DLLVERSIONINFO2 *)pdvi;
1112 pdvi2->ullVersion = MAKEDLLVERULL(WINE_FILEVERSION_MAJOR,
1113 WINE_FILEVERSION_MINOR,
1114 WINE_FILEVERSION_BUILD,
1115 WINE_FILEVERSION_PLATFORMID);
1117 TRACE("%lu.%lu.%lu.%lu\n",
1118 pdvi->dwMajorVersion, pdvi->dwMinorVersion,
1119 pdvi->dwBuildNumber, pdvi->dwPlatformID);
1124 WARN("wrong DLLVERSIONINFO size from app\n");
1125 return E_INVALIDARG;
1129 /*************************************************************************
1130 * global variables of the shell32.dll
1131 * all are once per process
1134 HINSTANCE shell32_hInstance = 0;
1135 HIMAGELIST ShellSmallIconList = 0;
1136 HIMAGELIST ShellBigIconList = 0;
1139 /*************************************************************************
1143 * calling oleinitialize here breaks sone apps.
1145 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
1147 TRACE("%p 0x%lx %p\n", hinstDLL, fdwReason, fImpLoad);
1151 case DLL_PROCESS_ATTACH:
1152 shell32_hInstance = hinstDLL;
1153 DisableThreadLibraryCalls(shell32_hInstance);
1155 /* get full path to this DLL for IExtractIconW_fnGetIconLocation() */
1156 GetModuleFileNameW(hinstDLL, swShell32Name, MAX_PATH);
1157 swShell32Name[MAX_PATH - 1] = '\0';
1159 InitCommonControlsEx(NULL);
1162 InitChangeNotifications();
1165 case DLL_PROCESS_DETACH:
1166 shell32_hInstance = 0;
1168 FreeChangeNotifications();
1174 /*************************************************************************
1175 * DllInstall [SHELL32.@]
1179 * BOOL bInstall - TRUE for install, FALSE for uninstall
1180 * LPCWSTR pszCmdLine - command line (unused by shell32?)
1183 HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
1185 FIXME("%s %s: stub\n", bInstall ? "TRUE":"FALSE", debugstr_w(cmdline));
1186 return S_OK; /* indicate success */
1189 /***********************************************************************
1190 * DllCanUnloadNow (SHELL32.@)
1192 HRESULT WINAPI DllCanUnloadNow(void)