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 writable 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%x sfi=%p(attr=0x%08x) 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 these 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 if (flags
& SHGFI_USEFILEATTRIBUTES
)
516 if (dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
518 lstrcpyW(psfi
->szDisplayName
, swShell32Name
);
519 psfi
->iIcon
= -IDI_SHELL_FOLDER
;
524 static const WCHAR p1W
[] = {'%','1',0};
525 WCHAR sTemp
[MAX_PATH
];
527 szExt
= (LPWSTR
) PathFindExtensionW(szFullPath
);
528 TRACE("szExt=%s\n", debugstr_w(szExt
));
530 HCR_MapTypeToValueW(szExt
, sTemp
, MAX_PATH
, TRUE
) &&
531 HCR_GetDefaultIconW(sTemp
, sTemp
, MAX_PATH
, &psfi
->iIcon
))
533 if (lstrcmpW(p1W
, sTemp
))
534 strcpyW(psfi
->szDisplayName
, sTemp
);
537 /* the icon is in the file */
538 strcpyW(psfi
->szDisplayName
, szFullPath
);
547 hr
= IShellFolder_GetUIObjectOf(psfParent
, 0, 1,
548 (LPCITEMIDLIST
*)&pidlLast
, &IID_IExtractIconW
,
549 &uDummy
, (LPVOID
*)&pei
);
552 hr
= IExtractIconW_GetIconLocation(pei
, uGilFlags
,
553 szLocation
, MAX_PATH
, &iIndex
, &uFlags
);
555 if (uFlags
& GIL_NOTFILENAME
)
559 lstrcpyW (psfi
->szDisplayName
, szLocation
);
560 psfi
->iIcon
= iIndex
;
562 IExtractIconW_Release(pei
);
567 /* get icon index (or load icon)*/
568 if (SUCCEEDED(hr
) && (flags
& (SHGFI_ICON
| SHGFI_SYSICONINDEX
)))
570 if (flags
& SHGFI_USEFILEATTRIBUTES
)
572 WCHAR sTemp
[MAX_PATH
];
576 lstrcpynW(sTemp
, szFullPath
, MAX_PATH
);
578 if (dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
579 psfi
->iIcon
= SIC_GetIconIndex(swShell32Name
, -IDI_SHELL_FOLDER
, 0);
582 static const WCHAR p1W
[] = {'%','1',0};
585 szExt
= (LPWSTR
) PathFindExtensionW(sTemp
);
587 HCR_MapTypeToValueW(szExt
, sTemp
, MAX_PATH
, TRUE
) &&
588 HCR_GetDefaultIconW(sTemp
, sTemp
, MAX_PATH
, &icon_idx
))
590 if (!lstrcmpW(p1W
,sTemp
)) /* icon is in the file */
591 strcpyW(sTemp
, szFullPath
);
593 if (flags
& SHGFI_SYSICONINDEX
)
595 psfi
->iIcon
= SIC_GetIconIndex(sTemp
,icon_idx
,0);
596 if (psfi
->iIcon
== -1)
601 IconNotYetLoaded
=FALSE
;
602 if (flags
& SHGFI_SMALLICON
)
603 PrivateExtractIconsW( sTemp
,icon_idx
,
604 GetSystemMetrics( SM_CXSMICON
),
605 GetSystemMetrics( SM_CYSMICON
),
606 &psfi
->hIcon
, 0, 1, 0);
608 PrivateExtractIconsW( sTemp
, icon_idx
,
609 GetSystemMetrics( SM_CXICON
),
610 GetSystemMetrics( SM_CYICON
),
611 &psfi
->hIcon
, 0, 1, 0);
612 psfi
->iIcon
= icon_idx
;
619 if (!(PidlToSicIndex(psfParent
, pidlLast
, !(flags
& SHGFI_SMALLICON
),
620 uGilFlags
, &(psfi
->iIcon
))))
627 if (flags
& SHGFI_SMALLICON
)
628 ret
= (DWORD_PTR
) ShellSmallIconList
;
630 ret
= (DWORD_PTR
) ShellBigIconList
;
635 if (SUCCEEDED(hr
) && (flags
& SHGFI_ICON
) && IconNotYetLoaded
)
637 if (flags
& SHGFI_SMALLICON
)
638 psfi
->hIcon
= ImageList_GetIcon( ShellSmallIconList
, psfi
->iIcon
, ILD_NORMAL
);
640 psfi
->hIcon
= ImageList_GetIcon( ShellBigIconList
, psfi
->iIcon
, ILD_NORMAL
);
643 if (flags
& ~SHGFI_KNOWN_FLAGS
)
644 FIXME("unknown flags %08x\n", flags
& ~SHGFI_KNOWN_FLAGS
);
647 IShellFolder_Release(psfParent
);
655 TRACE ("icon=%p index=0x%08x attr=0x%08x name=%s type=%s ret=0x%08lx\n",
656 psfi
->hIcon
, psfi
->iIcon
, psfi
->dwAttributes
,
657 debugstr_w(psfi
->szDisplayName
), debugstr_w(psfi
->szTypeName
), ret
);
663 /*************************************************************************
664 * SHGetFileInfoA [SHELL32.@]
666 DWORD_PTR WINAPI
SHGetFileInfoA(LPCSTR path
,DWORD dwFileAttributes
,
667 SHFILEINFOA
*psfi
, UINT sizeofpsfi
,
671 LPWSTR temppath
= NULL
;
674 SHFILEINFOW temppsfi
;
676 if (flags
& SHGFI_PIDL
)
678 /* path contains a pidl */
679 pathW
= (LPCWSTR
)path
;
683 len
= MultiByteToWideChar(CP_ACP
, 0, path
, -1, NULL
, 0);
684 temppath
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
685 MultiByteToWideChar(CP_ACP
, 0, path
, -1, temppath
, len
);
689 if (psfi
&& (flags
& SHGFI_ATTR_SPECIFIED
))
690 temppsfi
.dwAttributes
=psfi
->dwAttributes
;
693 ret
= SHGetFileInfoW(pathW
, dwFileAttributes
, NULL
, sizeof(temppsfi
), flags
);
695 ret
= SHGetFileInfoW(pathW
, dwFileAttributes
, &temppsfi
, sizeof(temppsfi
), flags
);
699 if(flags
& SHGFI_ICON
)
700 psfi
->hIcon
=temppsfi
.hIcon
;
701 if(flags
& (SHGFI_SYSICONINDEX
|SHGFI_ICON
|SHGFI_ICONLOCATION
))
702 psfi
->iIcon
=temppsfi
.iIcon
;
703 if(flags
& SHGFI_ATTRIBUTES
)
704 psfi
->dwAttributes
=temppsfi
.dwAttributes
;
705 if(flags
& (SHGFI_DISPLAYNAME
|SHGFI_ICONLOCATION
))
707 WideCharToMultiByte(CP_ACP
, 0, temppsfi
.szDisplayName
, -1,
708 psfi
->szDisplayName
, sizeof(psfi
->szDisplayName
), NULL
, NULL
);
710 if(flags
& SHGFI_TYPENAME
)
712 WideCharToMultiByte(CP_ACP
, 0, temppsfi
.szTypeName
, -1,
713 psfi
->szTypeName
, sizeof(psfi
->szTypeName
), NULL
, NULL
);
717 HeapFree(GetProcessHeap(), 0, temppath
);
722 /*************************************************************************
723 * DuplicateIcon [SHELL32.@]
725 HICON WINAPI
DuplicateIcon( HINSTANCE hInstance
, HICON hIcon
)
730 TRACE("%p %p\n", hInstance
, hIcon
);
732 if (GetIconInfo(hIcon
, &IconInfo
))
734 hDupIcon
= CreateIconIndirect(&IconInfo
);
736 /* clean up hbmMask and hbmColor */
737 DeleteObject(IconInfo
.hbmMask
);
738 DeleteObject(IconInfo
.hbmColor
);
744 /*************************************************************************
745 * ExtractIconA [SHELL32.@]
747 HICON WINAPI
ExtractIconA(HINSTANCE hInstance
, LPCSTR lpszFile
, UINT nIconIndex
)
750 INT len
= MultiByteToWideChar(CP_ACP
, 0, lpszFile
, -1, NULL
, 0);
751 LPWSTR lpwstrFile
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
753 TRACE("%p %s %d\n", hInstance
, lpszFile
, nIconIndex
);
755 MultiByteToWideChar(CP_ACP
, 0, lpszFile
, -1, lpwstrFile
, len
);
756 ret
= ExtractIconW(hInstance
, lpwstrFile
, nIconIndex
);
757 HeapFree(GetProcessHeap(), 0, lpwstrFile
);
762 /*************************************************************************
763 * ExtractIconW [SHELL32.@]
765 HICON WINAPI
ExtractIconW(HINSTANCE hInstance
, LPCWSTR lpszFile
, UINT nIconIndex
)
769 UINT cx
= GetSystemMetrics(SM_CXICON
), cy
= GetSystemMetrics(SM_CYICON
);
771 TRACE("%p %s %d\n", hInstance
, debugstr_w(lpszFile
), nIconIndex
);
773 if (nIconIndex
== 0xFFFFFFFF)
775 ret
= PrivateExtractIconsW(lpszFile
, 0, cx
, cy
, NULL
, NULL
, 0, LR_DEFAULTCOLOR
);
776 if (ret
!= 0xFFFFFFFF && ret
)
777 return (HICON
)(UINT_PTR
)ret
;
781 ret
= PrivateExtractIconsW(lpszFile
, nIconIndex
, cx
, cy
, &hIcon
, NULL
, 1, LR_DEFAULTCOLOR
);
783 if (ret
== 0xFFFFFFFF)
785 else if (ret
> 0 && hIcon
)
791 /*************************************************************************
792 * Printer_LoadIconsW [SHELL32.205]
794 VOID WINAPI
Printer_LoadIconsW(LPCWSTR wsPrinterName
, HICON
* pLargeIcon
, HICON
* pSmallIcon
)
796 INT iconindex
=IDI_SHELL_PRINTER
;
798 TRACE("(%s, %p, %p)\n", debugstr_w(wsPrinterName
), pLargeIcon
, pSmallIcon
);
800 /* We should check if wsPrinterName is
801 1. the Default Printer or not
803 3. a Local Printer or a Network-Printer
804 and use different Icons
806 if((wsPrinterName
!= NULL
) && (wsPrinterName
[0] != 0))
808 FIXME("(select Icon by PrinterName %s not implemented)\n", debugstr_w(wsPrinterName
));
811 if(pLargeIcon
!= NULL
)
812 *pLargeIcon
= LoadImageW(shell32_hInstance
,
813 (LPCWSTR
) MAKEINTRESOURCE(iconindex
), IMAGE_ICON
,
814 0, 0, LR_DEFAULTCOLOR
|LR_DEFAULTSIZE
);
816 if(pSmallIcon
!= NULL
)
817 *pSmallIcon
= LoadImageW(shell32_hInstance
,
818 (LPCWSTR
) MAKEINTRESOURCE(iconindex
), IMAGE_ICON
,
819 16, 16, LR_DEFAULTCOLOR
);
822 /*************************************************************************
823 * Printers_RegisterWindowW [SHELL32.213]
824 * used by "printui.dll":
825 * find the Window of the given Type for the specific Printer and
826 * return the already existent hwnd or open a new window
828 BOOL WINAPI
Printers_RegisterWindowW(LPCWSTR wsPrinter
, DWORD dwType
,
829 HANDLE
* phClassPidl
, HWND
* phwnd
)
831 FIXME("(%s, %x, %p (%p), %p (%p)) stub!\n", debugstr_w(wsPrinter
), dwType
,
832 phClassPidl
, (phClassPidl
!= NULL
) ? *(phClassPidl
) : NULL
,
833 phwnd
, (phwnd
!= NULL
) ? *(phwnd
) : NULL
);
838 /*************************************************************************
839 * Printers_UnregisterWindow [SHELL32.214]
841 VOID WINAPI
Printers_UnregisterWindow(HANDLE hClassPidl
, HWND hwnd
)
843 FIXME("(%p, %p) stub!\n", hClassPidl
, hwnd
);
846 /*************************************************************************/
851 LPCWSTR szOtherStuff
;
856 #define IDC_STATIC_TEXT1 100
857 #define IDC_STATIC_TEXT2 101
858 #define IDC_LISTBOX 99
859 #define IDC_WINE_TEXT 98
861 #define DROP_FIELD_TOP (-15)
862 #define DROP_FIELD_HEIGHT 15
864 static BOOL
__get_dropline( HWND hWnd
, LPRECT lprect
)
866 HWND hWndCtl
= GetDlgItem(hWnd
, IDC_WINE_TEXT
);
870 GetWindowRect( hWndCtl
, lprect
);
871 MapWindowPoints( 0, hWnd
, (LPPOINT
)lprect
, 2 );
872 lprect
->bottom
= (lprect
->top
+= DROP_FIELD_TOP
);
878 /*************************************************************************
879 * SHAppBarMessage [SHELL32.@]
881 UINT WINAPI
SHAppBarMessage(DWORD msg
, PAPPBARDATA data
)
883 int width
=data
->rc
.right
- data
->rc
.left
;
884 int height
=data
->rc
.bottom
- data
->rc
.top
;
890 return ABS_ALWAYSONTOP
| ABS_AUTOHIDE
;
891 case ABM_GETTASKBARPOS
:
892 GetWindowRect(data
->hWnd
, &rec
);
896 SetActiveWindow(data
->hWnd
);
898 case ABM_GETAUTOHIDEBAR
:
899 data
->hWnd
=GetActiveWindow();
902 /* cbSize, hWnd, and uCallbackMessage are used. All other ignored */
903 SetWindowPos(data
->hWnd
,HWND_TOP
,0,0,0,0,SWP_SHOWWINDOW
|SWP_NOMOVE
|SWP_NOSIZE
);
906 GetWindowRect(data
->hWnd
, &(data
->rc
));
909 FIXME("ABM_REMOVE broken\n");
910 /* FIXME: this is wrong; should it be DestroyWindow instead? */
911 /*CloseHandle(data->hWnd);*/
913 case ABM_SETAUTOHIDEBAR
:
914 SetWindowPos(data
->hWnd
,HWND_TOP
,rec
.left
+1000,rec
.top
,
915 width
,height
,SWP_SHOWWINDOW
);
918 data
->uEdge
=(ABE_RIGHT
| ABE_LEFT
);
919 SetWindowPos(data
->hWnd
,HWND_TOP
,data
->rc
.left
,data
->rc
.top
,
920 width
,height
,SWP_SHOWWINDOW
);
922 case ABM_WINDOWPOSCHANGED
:
928 /*************************************************************************
929 * SHHelpShortcuts_RunDLLA [SHELL32.@]
932 DWORD WINAPI
SHHelpShortcuts_RunDLLA(DWORD dwArg1
, DWORD dwArg2
, DWORD dwArg3
, DWORD dwArg4
)
934 FIXME("(%x, %x, %x, %x) stub!\n", dwArg1
, dwArg2
, dwArg3
, dwArg4
);
938 /*************************************************************************
939 * SHHelpShortcuts_RunDLLA [SHELL32.@]
942 DWORD WINAPI
SHHelpShortcuts_RunDLLW(DWORD dwArg1
, DWORD dwArg2
, DWORD dwArg3
, DWORD dwArg4
)
944 FIXME("(%x, %x, %x, %x) stub!\n", dwArg1
, dwArg2
, dwArg3
, dwArg4
);
948 /*************************************************************************
949 * SHLoadInProc [SHELL32.@]
950 * Create an instance of specified object class from within
951 * the shell process and release it immediately
953 HRESULT WINAPI
SHLoadInProc (REFCLSID rclsid
)
957 TRACE("%s\n", debugstr_guid(rclsid
));
959 CoCreateInstance(rclsid
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IUnknown
,&ptr
);
962 IUnknown
* pUnk
= ptr
;
963 IUnknown_Release(pUnk
);
966 return DISP_E_MEMBERNOTFOUND
;
969 /*************************************************************************
970 * AboutDlgProc (internal)
972 INT_PTR CALLBACK
AboutDlgProc( HWND hWnd
, UINT msg
, WPARAM wParam
,
983 ABOUT_INFO
*info
= (ABOUT_INFO
*)lParam
;
984 WCHAR Template
[512], AppTitle
[512];
988 const char* const *pstr
= SHELL_Authors
;
989 SendDlgItemMessageW(hWnd
, stc1
, STM_SETICON
,(WPARAM
)info
->hIcon
, 0);
990 GetWindowTextW( hWnd
, Template
, sizeof(Template
)/sizeof(WCHAR
) );
991 sprintfW( AppTitle
, Template
, info
->szApp
);
992 SetWindowTextW( hWnd
, AppTitle
);
993 SetWindowTextW( GetDlgItem(hWnd
, IDC_STATIC_TEXT1
), info
->szApp
);
994 SetWindowTextW( GetDlgItem(hWnd
, IDC_STATIC_TEXT2
), info
->szOtherStuff
);
995 hWndCtl
= GetDlgItem(hWnd
, IDC_LISTBOX
);
996 SendMessageW( hWndCtl
, WM_SETREDRAW
, 0, 0 );
997 SendMessageW( hWndCtl
, WM_SETFONT
, (WPARAM
)info
->hFont
, 0 );
1001 /* authors list is in utf-8 format */
1002 MultiByteToWideChar( CP_UTF8
, 0, *pstr
, -1, name
, sizeof(name
)/sizeof(WCHAR
) );
1003 SendMessageW( hWndCtl
, LB_ADDSTRING
, (WPARAM
)-1, (LPARAM
)name
);
1006 SendMessageW( hWndCtl
, WM_SETREDRAW
, 1, 0 );
1015 HDC hDC
= BeginPaint( hWnd
, &ps
);
1017 if (__get_dropline( hWnd
, &rect
))
1019 SelectObject( hDC
, GetStockObject( BLACK_PEN
) );
1020 MoveToEx( hDC
, rect
.left
, rect
.top
, NULL
);
1021 LineTo( hDC
, rect
.right
, rect
.bottom
);
1023 EndPaint( hWnd
, &ps
);
1028 if (wParam
== IDOK
|| wParam
== IDCANCEL
)
1030 EndDialog(hWnd
, TRUE
);
1035 EndDialog(hWnd
, TRUE
);
1043 /*************************************************************************
1044 * ShellAboutA [SHELL32.288]
1046 BOOL WINAPI
ShellAboutA( HWND hWnd
, LPCSTR szApp
, LPCSTR szOtherStuff
, HICON hIcon
)
1049 LPWSTR appW
= NULL
, otherW
= NULL
;
1054 len
= MultiByteToWideChar(CP_ACP
, 0, szApp
, -1, NULL
, 0);
1055 appW
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
1056 MultiByteToWideChar(CP_ACP
, 0, szApp
, -1, appW
, len
);
1060 len
= MultiByteToWideChar(CP_ACP
, 0, szOtherStuff
, -1, NULL
, 0);
1061 otherW
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
1062 MultiByteToWideChar(CP_ACP
, 0, szOtherStuff
, -1, otherW
, len
);
1065 ret
= ShellAboutW(hWnd
, appW
, otherW
, hIcon
);
1067 HeapFree(GetProcessHeap(), 0, otherW
);
1068 HeapFree(GetProcessHeap(), 0, appW
);
1073 /*************************************************************************
1074 * ShellAboutW [SHELL32.289]
1076 BOOL WINAPI
ShellAboutW( HWND hWnd
, LPCWSTR szApp
, LPCWSTR szOtherStuff
,
1084 static const WCHAR wszSHELL_ABOUT_MSGBOX
[] =
1085 {'S','H','E','L','L','_','A','B','O','U','T','_','M','S','G','B','O','X',0};
1089 if(!(hRes
= FindResourceW(shell32_hInstance
, wszSHELL_ABOUT_MSGBOX
, (LPWSTR
)RT_DIALOG
)))
1091 if(!(template = (LPVOID
)LoadResource(shell32_hInstance
, hRes
)))
1094 info
.szOtherStuff
= szOtherStuff
;
1095 info
.hIcon
= hIcon
? hIcon
: LoadIconW( 0, (LPWSTR
)IDI_WINLOGO
);
1097 SystemParametersInfoW( SPI_GETICONTITLELOGFONT
, 0, &logFont
, 0 );
1098 info
.hFont
= CreateFontIndirectW( &logFont
);
1100 bRet
= DialogBoxIndirectParamW((HINSTANCE
)GetWindowLongPtrW( hWnd
, GWLP_HINSTANCE
),
1101 template, hWnd
, AboutDlgProc
, (LPARAM
)&info
);
1102 DeleteObject(info
.hFont
);
1106 /*************************************************************************
1107 * FreeIconList (SHELL32.@)
1109 void WINAPI
FreeIconList( DWORD dw
)
1111 FIXME("%x: stub\n",dw
);
1114 /*************************************************************************
1115 * SHLoadNonloadedIconOverlayIdentifiers (SHELL32.@)
1117 HRESULT WINAPI
SHLoadNonloadedIconOverlayIdentifiers( VOID
)
1123 /***********************************************************************
1124 * DllGetVersion [SHELL32.@]
1126 * Retrieves version information of the 'SHELL32.DLL'
1129 * pdvi [O] pointer to version information structure.
1133 * Failure: E_INVALIDARG
1136 * Returns version of a shell32.dll from IE4.01 SP1.
1139 HRESULT WINAPI
DllGetVersion (DLLVERSIONINFO
*pdvi
)
1141 /* FIXME: shouldn't these values come from the version resource? */
1142 if (pdvi
->cbSize
== sizeof(DLLVERSIONINFO
) ||
1143 pdvi
->cbSize
== sizeof(DLLVERSIONINFO2
))
1145 pdvi
->dwMajorVersion
= WINE_FILEVERSION_MAJOR
;
1146 pdvi
->dwMinorVersion
= WINE_FILEVERSION_MINOR
;
1147 pdvi
->dwBuildNumber
= WINE_FILEVERSION_BUILD
;
1148 pdvi
->dwPlatformID
= WINE_FILEVERSION_PLATFORMID
;
1149 if (pdvi
->cbSize
== sizeof(DLLVERSIONINFO2
))
1151 DLLVERSIONINFO2
*pdvi2
= (DLLVERSIONINFO2
*)pdvi
;
1154 pdvi2
->ullVersion
= MAKEDLLVERULL(WINE_FILEVERSION_MAJOR
,
1155 WINE_FILEVERSION_MINOR
,
1156 WINE_FILEVERSION_BUILD
,
1157 WINE_FILEVERSION_PLATFORMID
);
1159 TRACE("%u.%u.%u.%u\n",
1160 pdvi
->dwMajorVersion
, pdvi
->dwMinorVersion
,
1161 pdvi
->dwBuildNumber
, pdvi
->dwPlatformID
);
1166 WARN("wrong DLLVERSIONINFO size from app\n");
1167 return E_INVALIDARG
;
1171 /*************************************************************************
1172 * global variables of the shell32.dll
1173 * all are once per process
1176 HINSTANCE shell32_hInstance
= 0;
1177 HIMAGELIST ShellSmallIconList
= 0;
1178 HIMAGELIST ShellBigIconList
= 0;
1181 /*************************************************************************
1185 * calling oleinitialize here breaks sone apps.
1187 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID fImpLoad
)
1189 TRACE("%p 0x%x %p\n", hinstDLL
, fdwReason
, fImpLoad
);
1193 case DLL_PROCESS_ATTACH
:
1194 shell32_hInstance
= hinstDLL
;
1195 DisableThreadLibraryCalls(shell32_hInstance
);
1197 /* get full path to this DLL for IExtractIconW_fnGetIconLocation() */
1198 GetModuleFileNameW(hinstDLL
, swShell32Name
, MAX_PATH
);
1199 swShell32Name
[MAX_PATH
- 1] = '\0';
1201 InitCommonControlsEx(NULL
);
1204 InitChangeNotifications();
1207 case DLL_PROCESS_DETACH
:
1208 shell32_hInstance
= 0;
1210 FreeChangeNotifications();
1216 /*************************************************************************
1217 * DllInstall [SHELL32.@]
1221 * BOOL bInstall - TRUE for install, FALSE for uninstall
1222 * LPCWSTR pszCmdLine - command line (unused by shell32?)
1225 HRESULT WINAPI
DllInstall(BOOL bInstall
, LPCWSTR cmdline
)
1227 FIXME("%s %s: stub\n", bInstall
? "TRUE":"FALSE", debugstr_w(cmdline
));
1228 return S_OK
; /* indicate success */
1231 /***********************************************************************
1232 * DllCanUnloadNow (SHELL32.@)
1234 HRESULT WINAPI
DllCanUnloadNow(void)