2 * Helper program to build unix menu entries
4 * Copyright 1997 Marcus Meissner
5 * Copyright 1998 Juergen Schmied
6 * Copyright 2003 Mike McCormack for CodeWeavers
7 * Copyright 2004 Dmitry Timoshkov
8 * Copyright 2005 Bill Medland
9 * Copyright 2008 Damjan Jovanovic
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 * This program is used to replicate the Windows desktop and start menu
27 * into the native desktop's copies. Desktop entries are merged directly
28 * into the native desktop. The Windows Start Menu corresponds to a Wine
29 * entry within the native "start" menu and replicates the whole tree
30 * structure of the Windows Start Menu. Currently it does not differentiate
31 * between the user's desktop/start menu and the "All Users" copies.
33 * This program will read a Windows shortcut file using the IShellLink
34 * interface, then create a KDE/Gnome menu entry for the shortcut.
36 * winemenubuilder [ -w ] <shortcut.lnk>
38 * If the -w parameter is passed, and the shortcut cannot be created,
39 * this program will wait for the parent process to finish and then try
40 * again. This covers the case when a ShortCut is created before the
41 * executable containing its icon.
44 * Handle data lnk files. There is no icon in the file; the icon is in
45 * the handler for the file type (or pointed to by the lnk file). Also it
46 * might be better to use a native handler (e.g. a native acroread for pdf
48 * Differentiate between the user's entries and the "All Users" entries.
49 * If it is possible to add the desktop files to the native system's
50 * shared location for an "All Users" entry then do so. As a suggestion the
51 * shared menu Wine base could be writable to the wine group, or a wineadm
53 * Clean up fd.o menu icons and .directory files when the menu is deleted
55 * Generate icons for file open handlers to go into the "Open with..."
56 * list. What does Windows use, the default icon for the .EXE file? It's
57 * not in the registry.
58 * Associate applications under HKCR\Applications to open any MIME type
59 * (by associating with application/octet-stream, or how?).
60 * Clean up fd.o MIME types when they are deleted in Windows, their icons
61 * too. Very hard - once we associate them with fd.o, we can't tell whether
62 * they are ours or not, and the extension <-> MIME type mapping isn't
64 * Wine's HKCR is broken - it doesn't merge HKCU\Software\Classes, so apps
65 * that write associations there won't associate (#17019).
69 #include "wine/port.h"
94 #include "wine/unicode.h"
95 #include "wine/debug.h"
96 #include "wine/library.h"
97 #include "wine/list.h"
105 WINE_DEFAULT_DEBUG_CHANNEL(menubuilder
);
107 #define in_desktop_dir(csidl) ((csidl)==CSIDL_DESKTOPDIRECTORY || \
108 (csidl)==CSIDL_COMMON_DESKTOPDIRECTORY)
109 #define in_startmenu(csidl) ((csidl)==CSIDL_STARTMENU || \
110 (csidl)==CSIDL_COMMON_STARTMENU)
112 /* link file formats */
114 #include "pshpack1.h"
133 GRPICONDIRENTRY idEntries
[1];
171 static char *xdg_config_dir
;
172 static char *xdg_data_dir
;
173 static char *xdg_desktop_dir
;
175 static WCHAR
* assoc_query(ASSOCSTR assocStr
, LPCWSTR name
, LPCWSTR extra
);
176 static char *extract_icon(LPCWSTR path
, int index
, const char *destFilename
, BOOL bWait
);
178 /* Icon extraction routines
180 * FIXME: should use PrivateExtractIcons and friends
181 * FIXME: should not use stdio
184 #define MASK(x,y) (pAND[(x) / 8 + (nHeight - (y) - 1) * nANDWidthBytes] & (1 << (7 - (x) % 8)))
186 /* PNG-specific code */
189 static void *libpng_handle
;
190 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
191 MAKE_FUNCPTR(png_create_info_struct
);
192 MAKE_FUNCPTR(png_create_write_struct
);
193 MAKE_FUNCPTR(png_destroy_write_struct
);
194 MAKE_FUNCPTR(png_get_error_ptr
);
195 MAKE_FUNCPTR(png_init_io
);
196 MAKE_FUNCPTR(png_set_bgr
);
197 MAKE_FUNCPTR(png_set_error_fn
);
198 MAKE_FUNCPTR(png_set_text
);
199 MAKE_FUNCPTR(png_set_IHDR
);
200 MAKE_FUNCPTR(png_write_end
);
201 MAKE_FUNCPTR(png_write_info
);
202 MAKE_FUNCPTR(png_write_row
);
205 static void *load_libpng(void)
207 if ((libpng_handle
= wine_dlopen(SONAME_LIBPNG
, RTLD_NOW
, NULL
, 0)) != NULL
)
209 #define LOAD_FUNCPTR(f) \
210 if((p##f = wine_dlsym(libpng_handle, #f, NULL, 0)) == NULL) { \
211 libpng_handle = NULL; \
214 LOAD_FUNCPTR(png_create_info_struct
);
215 LOAD_FUNCPTR(png_create_write_struct
);
216 LOAD_FUNCPTR(png_destroy_write_struct
);
217 LOAD_FUNCPTR(png_get_error_ptr
);
218 LOAD_FUNCPTR(png_init_io
);
219 LOAD_FUNCPTR(png_set_bgr
);
220 LOAD_FUNCPTR(png_set_error_fn
);
221 LOAD_FUNCPTR(png_set_IHDR
);
222 LOAD_FUNCPTR(png_set_text
);
223 LOAD_FUNCPTR(png_write_end
);
224 LOAD_FUNCPTR(png_write_info
);
225 LOAD_FUNCPTR(png_write_row
);
228 return libpng_handle
;
231 static void user_error_fn(png_structp png_ptr
, png_const_charp error_message
)
235 /* This uses setjmp/longjmp just like the default. We can't use the
236 * default because there's no way to access the jmp buffer in the png_struct
237 * that works in 1.2 and 1.4 and allows us to dynamically load libpng. */
238 WINE_ERR("PNG error: %s\n", wine_dbgstr_an(error_message
, -1));
239 pjmpbuf
= ppng_get_error_ptr(png_ptr
);
240 longjmp(*pjmpbuf
, 1);
243 static void user_warning_fn(png_structp png_ptr
, png_const_charp warning_message
)
245 WINE_WARN("PNG warning: %s\n", wine_dbgstr_an(warning_message
, -1));
248 static BOOL
SaveTrueColorIconResAsPNG(const BITMAPINFO
*pIcon
, const char *png_filename
, LPCWSTR commentW
)
250 static const char comment_key
[] = "Created from";
255 int nXORWidthBytes
, nANDWidthBytes
, color_type
= 0, i
, j
;
256 BYTE
*row
, *copy
= NULL
;
257 const BYTE
*pXOR
, *pAND
= NULL
;
258 int nWidth
= pIcon
->bmiHeader
.biWidth
;
259 int nHeight
= pIcon
->bmiHeader
.biHeight
;
260 int nBpp
= pIcon
->bmiHeader
.biBitCount
;
266 color_type
|= PNG_COLOR_MASK_ALPHA
;
269 color_type
|= PNG_COLOR_MASK_COLOR
;
275 if (!libpng_handle
&& !load_libpng())
277 WINE_WARN("Unable to load libpng\n");
281 if (!(fp
= fopen(png_filename
, "w")))
283 WINE_ERR("unable to open '%s' for writing: %s\n", png_filename
, strerror(errno
));
287 nXORWidthBytes
= 4 * ((nWidth
* nBpp
+ 31) / 32);
288 nANDWidthBytes
= 4 * ((nWidth
+ 31 ) / 32);
289 pXOR
= (const BYTE
*) pIcon
+ sizeof(BITMAPINFOHEADER
) + pIcon
->bmiHeader
.biClrUsed
* sizeof(RGBQUAD
);
290 if (nHeight
> nWidth
)
293 pAND
= pXOR
+ nHeight
* nXORWidthBytes
;
296 /* Apply mask if present */
301 /* copy bytes before modifying them */
302 copy
= HeapAlloc( GetProcessHeap(), 0, nHeight
* nXORWidthBytes
);
303 memcpy( copy
, pXOR
, nHeight
* nXORWidthBytes
);
306 /* image and mask are upside down reversed */
307 row
= copy
+ (nHeight
- 1) * nXORWidthBytes
;
309 /* top left corner */
310 bgColor
.rgbRed
= row
[0];
311 bgColor
.rgbGreen
= row
[1];
312 bgColor
.rgbBlue
= row
[2];
313 bgColor
.rgbReserved
= 0;
315 for (i
= 0; i
< nHeight
; i
++, row
-= nXORWidthBytes
)
316 for (j
= 0; j
< nWidth
; j
++, row
+= nBpp
>> 3)
319 RGBQUAD
*pixel
= (RGBQUAD
*)row
;
320 pixel
->rgbBlue
= bgColor
.rgbBlue
;
321 pixel
->rgbGreen
= bgColor
.rgbGreen
;
322 pixel
->rgbRed
= bgColor
.rgbRed
;
324 pixel
->rgbReserved
= bgColor
.rgbReserved
;
330 if (!(png_ptr
= ppng_create_write_struct(PNG_LIBPNG_VER_STRING
, NULL
, NULL
, NULL
)) ||
331 !(info_ptr
= ppng_create_info_struct(png_ptr
)))
336 /* All future errors jump here */
339 ppng_set_error_fn(png_ptr
, &jmpbuf
, user_error_fn
, user_warning_fn
);
341 ppng_init_io(png_ptr
, fp
);
342 ppng_set_IHDR(png_ptr
, info_ptr
, nWidth
, nHeight
, 8,
345 PNG_COMPRESSION_TYPE_DEFAULT
,
346 PNG_FILTER_TYPE_DEFAULT
);
349 comment
.compression
= PNG_TEXT_COMPRESSION_NONE
;
350 comment
.key
= (png_charp
)comment_key
;
351 i
= WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, NULL
, 0, NULL
, NULL
);
352 comment
.text
= HeapAlloc(GetProcessHeap(), 0, i
);
353 WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, comment
.text
, i
, NULL
, NULL
);
354 comment
.text_length
= i
- 1;
355 ppng_set_text(png_ptr
, info_ptr
, &comment
, 1);
358 ppng_write_info(png_ptr
, info_ptr
);
359 ppng_set_bgr(png_ptr
);
360 for (i
= nHeight
- 1; i
>= 0 ; i
--)
361 ppng_write_row(png_ptr
, (png_bytep
)pXOR
+ nXORWidthBytes
* i
);
362 ppng_write_end(png_ptr
, info_ptr
);
364 ppng_destroy_write_struct(&png_ptr
, &info_ptr
);
365 if (png_ptr
) ppng_destroy_write_struct(&png_ptr
, NULL
);
367 HeapFree(GetProcessHeap(), 0, copy
);
368 HeapFree(GetProcessHeap(), 0, comment
.text
);
372 if (png_ptr
) ppng_destroy_write_struct(&png_ptr
, NULL
);
374 unlink(png_filename
);
375 HeapFree(GetProcessHeap(), 0, copy
);
376 HeapFree(GetProcessHeap(), 0, comment
.text
);
380 static BOOL
SavePalettedIconResAsPNG(const BITMAPINFO
*pIcon
, const char *png_filename
, LPCWSTR commentW
)
382 static const char comment_key
[] = "Created from";
383 FILE *pngFile
= NULL
;
396 unsigned char *row
= NULL
;
401 if (!((pIcon
->bmiHeader
.biBitCount
== 4) || (pIcon
->bmiHeader
.biBitCount
== 8)))
403 WINE_FIXME("Unsupported color depth %d-bit\n", pIcon
->bmiHeader
.biBitCount
);
407 if (!(pngFile
= fopen(png_filename
, "w")))
409 WINE_TRACE("Unable to open '%s' for writing: %s\n", png_filename
, strerror(errno
));
413 nHeight
= pIcon
->bmiHeader
.biHeight
/ 2;
414 nXORWidthBytes
= 4 * ((pIcon
->bmiHeader
.biWidth
* pIcon
->bmiHeader
.biBitCount
/ 32)
415 + ((pIcon
->bmiHeader
.biWidth
* pIcon
->bmiHeader
.biBitCount
% 32) > 0));
416 nANDWidthBytes
= 4 * ((pIcon
->bmiHeader
.biWidth
/ 32)
417 + ((pIcon
->bmiHeader
.biWidth
% 32) > 0));
418 b8BitColors
= pIcon
->bmiHeader
.biBitCount
== 8;
419 nColors
= pIcon
->bmiHeader
.biClrUsed
? pIcon
->bmiHeader
.biClrUsed
420 : 1 << pIcon
->bmiHeader
.biBitCount
;
421 pXOR
= (const BYTE
*) pIcon
+ sizeof (BITMAPINFOHEADER
) + (nColors
* sizeof (RGBQUAD
));
422 pAND
= pXOR
+ nHeight
* nXORWidthBytes
;
424 row
= HeapAlloc(GetProcessHeap(), 0, 4 * pIcon
->bmiHeader
.biWidth
);
427 WINE_ERR("out of memory\n");
431 if (!libpng_handle
&& !load_libpng())
433 WINE_WARN("Unable to load libpng\n");
437 if (!(png_ptr
= ppng_create_write_struct(PNG_LIBPNG_VER_STRING
, NULL
, NULL
, NULL
)) ||
438 !(info_ptr
= ppng_create_info_struct(png_ptr
)))
443 /* All future errors jump here */
446 ppng_set_error_fn(png_ptr
, &jmpbuf
, user_error_fn
, user_warning_fn
);
448 ppng_init_io(png_ptr
, pngFile
);
449 ppng_set_IHDR(png_ptr
, info_ptr
, pIcon
->bmiHeader
.biWidth
, nHeight
, 8,
450 PNG_COLOR_TYPE_RGB_ALPHA
,
452 PNG_COMPRESSION_TYPE_DEFAULT
,
453 PNG_FILTER_TYPE_DEFAULT
);
456 comment
.compression
= PNG_TEXT_COMPRESSION_NONE
;
457 comment
.key
= (png_charp
)comment_key
;
458 i
= WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, NULL
, 0, NULL
, NULL
);
459 comment
.text
= HeapAlloc(GetProcessHeap(), 0, i
);
460 if (comment
.text
== NULL
)
462 WINE_ERR("out of memory\n");
465 WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, comment
.text
, i
, NULL
, NULL
);
466 comment
.text_length
= i
- 1;
467 ppng_set_text(png_ptr
, info_ptr
, &comment
, 1);
469 ppng_write_info(png_ptr
, info_ptr
);
470 for (i
= 0; i
< nHeight
; i
++)
472 unsigned char *p
= row
;
473 for (j
= 0; j
< pIcon
->bmiHeader
.biWidth
; j
++)
484 #define COLOR(x,y) (b8BitColors ? pXOR[(x) + (nHeight - (y) - 1) * nXORWidthBytes] : (x) % 2 ? pXOR[(x) / 2 + (nHeight - (y) - 1) * nXORWidthBytes] & 0xF : (pXOR[(x) / 2 + (nHeight - (y) - 1) * nXORWidthBytes] & 0xF0) >> 4)
485 *p
++ = pIcon
->bmiColors
[COLOR(j
,i
)].rgbRed
;
486 *p
++ = pIcon
->bmiColors
[COLOR(j
,i
)].rgbGreen
;
487 *p
++ = pIcon
->bmiColors
[COLOR(j
,i
)].rgbBlue
;
492 ppng_write_row(png_ptr
, (png_bytep
)row
);
494 ppng_write_end(png_ptr
, info_ptr
);
498 ppng_destroy_write_struct(&png_ptr
, &info_ptr
);
501 HeapFree(GetProcessHeap(), 0, comment
.text
);
502 HeapFree(GetProcessHeap(), 0, row
);
506 static BOOL
SaveIconResAsPNG(const BITMAPINFO
*pIcon
, const char *png_filename
, LPCWSTR commentW
)
508 switch (pIcon
->bmiHeader
.biBitCount
)
512 return SavePalettedIconResAsPNG(pIcon
, png_filename
, commentW
);
515 return SaveTrueColorIconResAsPNG(pIcon
, png_filename
, commentW
);
517 WINE_FIXME("unsupported bpp %d, please report", pIcon
->bmiHeader
.biBitCount
);
521 #endif /* SONAME_LIBPNG */
523 static BOOL
SaveIconResAsXPM(const BITMAPINFO
*pIcon
, const char *szXPMFileName
, LPCWSTR commentW
)
533 BOOL aColorUsed
[256] = {0};
538 if (!((pIcon
->bmiHeader
.biBitCount
== 4) || (pIcon
->bmiHeader
.biBitCount
== 8)))
540 WINE_FIXME("Unsupported color depth %d-bit\n", pIcon
->bmiHeader
.biBitCount
);
544 if (!(fXPMFile
= fopen(szXPMFileName
, "w")))
546 WINE_TRACE("unable to open '%s' for writing: %s\n", szXPMFileName
, strerror(errno
));
550 i
= WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, NULL
, 0, NULL
, NULL
);
551 comment
= HeapAlloc(GetProcessHeap(), 0, i
);
552 WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, comment
, i
, NULL
, NULL
);
554 nHeight
= pIcon
->bmiHeader
.biHeight
/ 2;
555 nXORWidthBytes
= 4 * ((pIcon
->bmiHeader
.biWidth
* pIcon
->bmiHeader
.biBitCount
/ 32)
556 + ((pIcon
->bmiHeader
.biWidth
* pIcon
->bmiHeader
.biBitCount
% 32) > 0));
557 nANDWidthBytes
= 4 * ((pIcon
->bmiHeader
.biWidth
/ 32)
558 + ((pIcon
->bmiHeader
.biWidth
% 32) > 0));
559 b8BitColors
= pIcon
->bmiHeader
.biBitCount
== 8;
560 nColors
= pIcon
->bmiHeader
.biClrUsed
? pIcon
->bmiHeader
.biClrUsed
561 : 1 << pIcon
->bmiHeader
.biBitCount
;
562 pXOR
= (const BYTE
*) pIcon
+ sizeof (BITMAPINFOHEADER
) + (nColors
* sizeof (RGBQUAD
));
563 pAND
= pXOR
+ nHeight
* nXORWidthBytes
;
565 #define COLOR(x,y) (b8BitColors ? pXOR[(x) + (nHeight - (y) - 1) * nXORWidthBytes] : (x) % 2 ? pXOR[(x) / 2 + (nHeight - (y) - 1) * nXORWidthBytes] & 0xF : (pXOR[(x) / 2 + (nHeight - (y) - 1) * nXORWidthBytes] & 0xF0) >> 4)
567 for (i
= 0; i
< nHeight
; i
++) {
568 for (j
= 0; j
< pIcon
->bmiHeader
.biWidth
; j
++) {
569 if (!aColorUsed
[COLOR(j
,i
)] && !MASK(j
,i
))
571 aColorUsed
[COLOR(j
,i
)] = TRUE
;
577 if (fprintf(fXPMFile
, "/* XPM */\n/* %s */\nstatic char *icon[] = {\n", comment
) <= 0)
579 if (fprintf(fXPMFile
, "\"%d %d %d %d\",\n",
580 (int) pIcon
->bmiHeader
.biWidth
, nHeight
, nColorsUsed
+ 1, 2) <=0)
583 for (i
= 0; i
< nColors
; i
++) {
585 if (fprintf(fXPMFile
, "\"%.2X c #%.2X%.2X%.2X\",\n", i
, pIcon
->bmiColors
[i
].rgbRed
,
586 pIcon
->bmiColors
[i
].rgbGreen
, pIcon
->bmiColors
[i
].rgbBlue
) <= 0)
589 if (fprintf(fXPMFile
, "\" c None\"") <= 0)
592 for (i
= 0; i
< nHeight
; i
++)
594 if (fprintf(fXPMFile
, ",\n\"") <= 0)
596 for (j
= 0; j
< pIcon
->bmiHeader
.biWidth
; j
++)
600 if (fprintf(fXPMFile
, " ") <= 0)
604 if (fprintf(fXPMFile
, "%.2X", COLOR(j
,i
)) <= 0)
607 if (fprintf(fXPMFile
, "\"") <= 0)
610 if (fprintf(fXPMFile
, "};\n") <= 0)
616 HeapFree(GetProcessHeap(), 0, comment
);
621 HeapFree(GetProcessHeap(), 0, comment
);
623 unlink( szXPMFileName
);
627 static BOOL CALLBACK
EnumResNameProc(HMODULE hModule
, LPCWSTR lpszType
, LPWSTR lpszName
, LONG_PTR lParam
)
629 ENUMRESSTRUCT
*sEnumRes
= (ENUMRESSTRUCT
*) lParam
;
631 if (!sEnumRes
->nIndex
--)
633 *sEnumRes
->pResInfo
= FindResourceW(hModule
, lpszName
, (LPCWSTR
)RT_GROUP_ICON
);
640 static BOOL
extract_icon32(LPCWSTR szFileName
, int nIndex
, char *szXPMFileName
)
644 LPCWSTR lpName
= NULL
;
646 GRPICONDIR
*pIconDir
;
648 ENUMRESSTRUCT sEnumRes
;
654 hModule
= LoadLibraryExW(szFileName
, 0, LOAD_LIBRARY_AS_DATAFILE
);
657 WINE_WARN("LoadLibraryExW (%s) failed, error %d\n",
658 wine_dbgstr_w(szFileName
), GetLastError());
664 hResInfo
= FindResourceW(hModule
, MAKEINTRESOURCEW(-nIndex
), (LPCWSTR
)RT_GROUP_ICON
);
665 WINE_TRACE("FindResourceW (%s) called, return %p, error %d\n",
666 wine_dbgstr_w(szFileName
), hResInfo
, GetLastError());
671 sEnumRes
.pResInfo
= &hResInfo
;
672 sEnumRes
.nIndex
= nIndex
;
673 if (!EnumResourceNamesW(hModule
, (LPCWSTR
)RT_GROUP_ICON
,
674 EnumResNameProc
, (LONG_PTR
)&sEnumRes
) &&
675 sEnumRes
.nIndex
!= -1)
677 WINE_TRACE("EnumResourceNamesW failed, error %d\n", GetLastError());
683 if ((hResData
= LoadResource(hModule
, hResInfo
)))
685 if ((pIconDir
= LockResource(hResData
)))
687 for (i
= 0; i
< pIconDir
->idCount
; i
++)
689 if (pIconDir
->idEntries
[i
].wBitCount
>= nMaxBits
)
691 if ((pIconDir
->idEntries
[i
].bHeight
* pIconDir
->idEntries
[i
].bWidth
) >= nMax
)
693 lpName
= MAKEINTRESOURCEW(pIconDir
->idEntries
[i
].nID
);
694 nMax
= pIconDir
->idEntries
[i
].bHeight
* pIconDir
->idEntries
[i
].bWidth
;
695 nMaxBits
= pIconDir
->idEntries
[i
].wBitCount
;
701 FreeResource(hResData
);
706 WINE_WARN("found no icon\n");
707 FreeLibrary(hModule
);
711 if ((hResInfo
= FindResourceW(hModule
, lpName
, (LPCWSTR
)RT_ICON
)))
713 if ((hResData
= LoadResource(hModule
, hResInfo
)))
715 if ((pIcon
= LockResource(hResData
)))
718 if (SaveIconResAsPNG(pIcon
, szXPMFileName
, szFileName
))
723 memcpy(szXPMFileName
+ strlen(szXPMFileName
) - 3, "xpm", 3);
724 if (SaveIconResAsXPM(pIcon
, szXPMFileName
, szFileName
))
729 FreeResource(hResData
);
733 FreeLibrary(hModule
);
737 static BOOL
ExtractFromEXEDLL(LPCWSTR szFileName
, int nIndex
, char *szXPMFileName
)
739 if (!extract_icon32(szFileName
, nIndex
, szXPMFileName
) /*&&
740 !extract_icon16(szFileName, szXPMFileName)*/)
745 static int ExtractFromICO(LPCWSTR szFileName
, char *szXPMFileName
)
747 FILE *fICOFile
= NULL
;
749 ICONDIRENTRY
*pIconDirEntry
= NULL
;
750 int nMax
= 0, nMaxBits
= 0;
754 char *filename
= NULL
;
756 filename
= wine_get_unix_file_name(szFileName
);
757 if (!(fICOFile
= fopen(filename
, "r")))
759 WINE_TRACE("unable to open '%s' for reading: %s\n", filename
, strerror(errno
));
763 if (fread(&iconDir
, sizeof (ICONDIR
), 1, fICOFile
) != 1 ||
764 (iconDir
.idReserved
!= 0) || (iconDir
.idType
!= 1))
766 WINE_WARN("Invalid ico file format\n");
770 if ((pIconDirEntry
= HeapAlloc(GetProcessHeap(), 0, iconDir
.idCount
* sizeof (ICONDIRENTRY
))) == NULL
)
772 if (fread(pIconDirEntry
, sizeof (ICONDIRENTRY
), iconDir
.idCount
, fICOFile
) != iconDir
.idCount
)
775 for (i
= 0; i
< iconDir
.idCount
; i
++)
777 WINE_TRACE("[%d]: %d x %d @ %d\n", i
, pIconDirEntry
[i
].bWidth
, pIconDirEntry
[i
].bHeight
, pIconDirEntry
[i
].wBitCount
);
778 if (pIconDirEntry
[i
].wBitCount
>= nMaxBits
&&
779 (pIconDirEntry
[i
].bHeight
* pIconDirEntry
[i
].bWidth
) >= nMax
)
782 nMax
= pIconDirEntry
[i
].bHeight
* pIconDirEntry
[i
].bWidth
;
783 nMaxBits
= pIconDirEntry
[i
].wBitCount
;
786 WINE_TRACE("Selected: %d\n", nIndex
);
788 if ((pIcon
= HeapAlloc(GetProcessHeap(), 0, pIconDirEntry
[nIndex
].dwBytesInRes
)) == NULL
)
790 if (fseek(fICOFile
, pIconDirEntry
[nIndex
].dwImageOffset
, SEEK_SET
))
792 if (fread(pIcon
, pIconDirEntry
[nIndex
].dwBytesInRes
, 1, fICOFile
) != 1)
796 /* Prefer PNG over XPM */
798 if (!SaveIconResAsPNG(pIcon
, szXPMFileName
, szFileName
))
801 memcpy(szXPMFileName
+ strlen(szXPMFileName
) - 3, "xpm", 3);
802 if (!SaveIconResAsXPM(pIcon
, szXPMFileName
, szFileName
))
806 HeapFree(GetProcessHeap(), 0, pIcon
);
807 HeapFree(GetProcessHeap(), 0, pIconDirEntry
);
809 HeapFree(GetProcessHeap(), 0, filename
);
813 HeapFree(GetProcessHeap(), 0, pIcon
);
814 HeapFree(GetProcessHeap(), 0, pIconDirEntry
);
815 if (fICOFile
) fclose(fICOFile
);
816 HeapFree(GetProcessHeap(), 0, filename
);
820 static int ExtractFromFileType(LPCWSTR szFileName
, char *szXPMFileName
)
826 WCHAR
*executable
= NULL
;
828 char *output_path
= NULL
;
830 extension
= strrchrW(szFileName
, '.');
831 if (extension
== NULL
)
834 icon
= assoc_query(ASSOCSTR_DEFAULTICON
, extension
, NULL
);
837 comma
= strrchrW(icon
, ',');
841 index
= atoiW(comma
+ 1);
843 output_path
= extract_icon(icon
, index
, NULL
, FALSE
);
844 WINE_TRACE("defaulticon %s -> icon %s\n", wine_dbgstr_w(icon
), wine_dbgstr_a(output_path
));
848 executable
= assoc_query(ASSOCSTR_EXECUTABLE
, extension
, NULL
);
850 output_path
= extract_icon(executable
, 0, NULL
, FALSE
);
851 WINE_TRACE("executable %s -> icon %s\n", wine_dbgstr_w(executable
), wine_dbgstr_a(output_path
));
854 ret
= (rename(output_path
, szXPMFileName
) == 0);
857 HeapFree(GetProcessHeap(), 0, icon
);
858 HeapFree(GetProcessHeap(), 0, executable
);
859 HeapFree(GetProcessHeap(), 0, output_path
);
863 static BOOL
create_default_icon( const char *filename
, const char* comment
)
868 if (!(fXPM
= fopen(filename
, "w"))) return FALSE
;
869 if (fprintf(fXPM
, "/* XPM */\n/* %s */\nstatic char * icon[] = {", comment
) <= 0)
871 for (i
= 0; i
< sizeof(wine_xpm
)/sizeof(wine_xpm
[0]); i
++) {
872 if (fprintf( fXPM
, "\n\"%s\",", wine_xpm
[i
]) <= 0)
875 if (fprintf( fXPM
, "};\n" ) <=0)
886 static unsigned short crc16(const char* string
)
888 unsigned short crc
= 0;
891 for (i
= 0; string
[i
] != 0; i
++)
894 for (j
= 0; j
< 8; c
>>= 1, j
++)
896 xor_poly
= (c
^ crc
) & 1;
905 static char *strdupA( const char *str
)
909 if (!str
) return NULL
;
910 if ((ret
= HeapAlloc( GetProcessHeap(), 0, strlen(str
) + 1 ))) strcpy( ret
, str
);
914 static char* heap_printf(const char *format
, ...)
921 va_start(args
, format
);
924 buffer
= HeapAlloc(GetProcessHeap(), 0, size
);
927 n
= vsnprintf(buffer
, size
, format
, args
);
934 HeapFree(GetProcessHeap(), 0, buffer
);
937 if (!buffer
) return NULL
;
938 ret
= HeapReAlloc(GetProcessHeap(), 0, buffer
, strlen(buffer
) + 1 );
939 if (!ret
) ret
= buffer
;
943 static void write_xml_text(FILE *file
, const char *text
)
946 for (i
= 0; text
[i
]; i
++)
949 fputs("&", file
);
950 else if (text
[i
] == '<')
952 else if (text
[i
] == '>')
954 else if (text
[i
] == '\'')
955 fputs("'", file
);
956 else if (text
[i
] == '"')
957 fputs(""", file
);
959 fputc(text
[i
], file
);
963 static BOOL
create_directories(char *directory
)
968 for (i
= 0; directory
[i
]; i
++)
970 if (i
> 0 && directory
[i
] == '/')
973 mkdir(directory
, 0777);
977 if (mkdir(directory
, 0777) && errno
!= EEXIST
)
983 static char* wchars_to_utf8_chars(LPCWSTR string
)
986 INT size
= WideCharToMultiByte(CP_UTF8
, 0, string
, -1, NULL
, 0, NULL
, NULL
);
987 ret
= HeapAlloc(GetProcessHeap(), 0, size
);
989 WideCharToMultiByte(CP_UTF8
, 0, string
, -1, ret
, size
, NULL
, NULL
);
993 static char* wchars_to_unix_chars(LPCWSTR string
)
996 INT size
= WideCharToMultiByte(CP_UNIXCP
, 0, string
, -1, NULL
, 0, NULL
, NULL
);
997 ret
= HeapAlloc(GetProcessHeap(), 0, size
);
999 WideCharToMultiByte(CP_UNIXCP
, 0, string
, -1, ret
, size
, NULL
, NULL
);
1003 static WCHAR
* utf8_chars_to_wchars(LPCSTR string
)
1006 INT size
= MultiByteToWideChar(CP_UTF8
, 0, string
, -1, NULL
, 0);
1007 ret
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
1009 MultiByteToWideChar(CP_UTF8
, 0, string
, -1, ret
, size
);
1013 /* extract an icon from an exe or icon file; helper for IPersistFile_fnSave */
1014 static char *extract_icon( LPCWSTR path
, int index
, const char *destFilename
, BOOL bWait
)
1017 char *iconsdir
= NULL
, *ico_path
= NULL
, *ico_name
, *xpm_path
= NULL
;
1021 /* Where should we save the icon? */
1022 WINE_TRACE("path=[%s] index=%d\n", wine_dbgstr_w(path
), index
);
1023 iconsdir
= heap_printf("%s/icons", xdg_data_dir
);
1026 if (mkdir(iconsdir
, 0777) && errno
!= EEXIST
)
1028 WINE_WARN("couldn't make icons directory %s\n", wine_dbgstr_a(iconsdir
));
1034 WINE_TRACE("no icon created\n");
1038 /* Determine the icon base name */
1039 n
= WideCharToMultiByte(CP_UNIXCP
, 0, path
, -1, NULL
, 0, NULL
, NULL
);
1040 ico_path
= HeapAlloc(GetProcessHeap(), 0, n
);
1041 WideCharToMultiByte(CP_UNIXCP
, 0, path
, -1, ico_path
, n
, NULL
, NULL
);
1042 s
=ico_name
=ico_path
;
1044 if (*s
=='/' || *s
=='\\') {
1052 if (*ico_name
=='\\') *ico_name
++='\0';
1053 s
=strrchr(ico_name
,'.');
1056 /* Compute the source-path hash */
1057 crc
=crc16(ico_path
);
1059 /* Try to treat the source file as an exe */
1061 xpm_path
=heap_printf("%s/%s.png",iconsdir
,destFilename
);
1063 xpm_path
=heap_printf("%s/%04x_%s.%d.png",iconsdir
,crc
,ico_name
,index
);
1064 if (xpm_path
== NULL
)
1066 WINE_ERR("could not extract icon %s, out of memory\n", wine_dbgstr_a(ico_name
));
1070 if (ExtractFromEXEDLL( path
, index
, xpm_path
))
1073 /* Must be something else, ignore the index in that case */
1075 sprintf(xpm_path
,"%s/%s.png",iconsdir
,destFilename
);
1077 sprintf(xpm_path
,"%s/%04x_%s.png",iconsdir
,crc
,ico_name
);
1078 if (ExtractFromICO( path
, xpm_path
))
1080 if (ExtractFromFileType( path
, xpm_path
))
1085 sprintf(xpm_path
,"%s/%s.xpm",iconsdir
,destFilename
);
1087 sprintf(xpm_path
,"%s/%04x_%s.xpm",iconsdir
,crc
,ico_name
);
1088 if (create_default_icon( xpm_path
, ico_path
))
1092 HeapFree( GetProcessHeap(), 0, xpm_path
);
1096 HeapFree(GetProcessHeap(), 0, iconsdir
);
1097 HeapFree(GetProcessHeap(), 0, ico_path
);
1101 static HKEY
open_menus_reg_key(void)
1103 static const WCHAR Software_Wine_FileOpenAssociationsW
[] = {
1104 'S','o','f','t','w','a','r','e','\\','W','i','n','e','\\','M','e','n','u','F','i','l','e','s',0};
1107 ret
= RegCreateKeyW(HKEY_CURRENT_USER
, Software_Wine_FileOpenAssociationsW
, &assocKey
);
1108 if (ret
== ERROR_SUCCESS
)
1114 static DWORD
register_menus_entry(const char *unix_file
, const char *windows_file
)
1117 WCHAR
*windows_fileW
;
1121 size
= MultiByteToWideChar(CP_UNIXCP
, 0, unix_file
, -1, NULL
, 0);
1122 unix_fileW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
1125 MultiByteToWideChar(CP_UNIXCP
, 0, unix_file
, -1, unix_fileW
, size
);
1126 size
= MultiByteToWideChar(CP_UNIXCP
, 0, windows_file
, -1, NULL
, 0);
1127 windows_fileW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
1131 MultiByteToWideChar(CP_UNIXCP
, 0, windows_file
, -1, windows_fileW
, size
);
1132 hkey
= open_menus_reg_key();
1135 ret
= RegSetValueExW(hkey
, unix_fileW
, 0, REG_SZ
, (const BYTE
*)windows_fileW
,
1136 (strlenW(windows_fileW
) + 1) * sizeof(WCHAR
));
1140 ret
= GetLastError();
1141 HeapFree(GetProcessHeap(), 0, windows_fileW
);
1144 ret
= ERROR_NOT_ENOUGH_MEMORY
;
1145 HeapFree(GetProcessHeap(), 0, unix_fileW
);
1148 ret
= ERROR_NOT_ENOUGH_MEMORY
;
1152 static BOOL
write_desktop_entry(const char *unix_link
, const char *location
, const char *linkname
,
1153 const char *path
, const char *args
, const char *descr
,
1154 const char *workdir
, const char *icon
)
1158 WINE_TRACE("(%s,%s,%s,%s,%s,%s,%s,%s)\n", wine_dbgstr_a(unix_link
), wine_dbgstr_a(location
),
1159 wine_dbgstr_a(linkname
), wine_dbgstr_a(path
), wine_dbgstr_a(args
),
1160 wine_dbgstr_a(descr
), wine_dbgstr_a(workdir
), wine_dbgstr_a(icon
));
1162 file
= fopen(location
, "w");
1166 fprintf(file
, "[Desktop Entry]\n");
1167 fprintf(file
, "Name=%s\n", linkname
);
1168 fprintf(file
, "Exec=env WINEPREFIX=\"%s\" wine %s %s\n",
1169 wine_get_config_dir(), path
, args
);
1170 fprintf(file
, "Type=Application\n");
1171 fprintf(file
, "StartupNotify=true\n");
1172 if (descr
&& lstrlenA(descr
))
1173 fprintf(file
, "Comment=%s\n", descr
);
1174 if (workdir
&& lstrlenA(workdir
))
1175 fprintf(file
, "Path=%s\n", workdir
);
1176 if (icon
&& lstrlenA(icon
))
1177 fprintf(file
, "Icon=%s\n", icon
);
1183 DWORD ret
= register_menus_entry(location
, unix_link
);
1184 if (ret
!= ERROR_SUCCESS
)
1191 static BOOL
write_directory_entry(const char *directory
, const char *location
)
1195 WINE_TRACE("(%s,%s)\n", wine_dbgstr_a(directory
), wine_dbgstr_a(location
));
1197 file
= fopen(location
, "w");
1201 fprintf(file
, "[Desktop Entry]\n");
1202 fprintf(file
, "Type=Directory\n");
1203 if (strcmp(directory
, "wine") == 0)
1205 fprintf(file
, "Name=Wine\n");
1206 fprintf(file
, "Icon=wine\n");
1210 fprintf(file
, "Name=%s\n", directory
);
1211 fprintf(file
, "Icon=folder\n");
1218 static BOOL
write_menu_file(const char *unix_link
, const char *filename
)
1221 FILE *tempfile
= NULL
;
1224 char *menuPath
= NULL
;
1229 WINE_TRACE("(%s)\n", wine_dbgstr_a(filename
));
1233 tempfilename
= heap_printf("%s/wine-menu-XXXXXX", xdg_config_dir
);
1236 int tempfd
= mkstemps(tempfilename
, 0);
1239 tempfile
= fdopen(tempfd
, "w");
1245 else if (errno
== EEXIST
)
1247 HeapFree(GetProcessHeap(), 0, tempfilename
);
1250 HeapFree(GetProcessHeap(), 0, tempfilename
);
1255 fprintf(tempfile
, "<!DOCTYPE Menu PUBLIC \"-//freedesktop//DTD Menu 1.0//EN\"\n");
1256 fprintf(tempfile
, "\"http://www.freedesktop.org/standards/menu-spec/menu-1.0.dtd\">\n");
1257 fprintf(tempfile
, "<Menu>\n");
1258 fprintf(tempfile
, " <Name>Applications</Name>\n");
1260 name
= HeapAlloc(GetProcessHeap(), 0, lstrlenA(filename
) + 1);
1261 if (name
== NULL
) goto end
;
1263 for (i
= 0; filename
[i
]; i
++)
1265 name
[i
] = filename
[i
];
1266 if (filename
[i
] == '/')
1268 char *dir_file_name
;
1271 fprintf(tempfile
, " <Menu>\n");
1272 fprintf(tempfile
, " <Name>%s", count
? "" : "wine-");
1273 write_xml_text(tempfile
, name
);
1274 fprintf(tempfile
, "</Name>\n");
1275 fprintf(tempfile
, " <Directory>%s", count
? "" : "wine-");
1276 write_xml_text(tempfile
, name
);
1277 fprintf(tempfile
, ".directory</Directory>\n");
1278 dir_file_name
= heap_printf("%s/desktop-directories/%s%s.directory",
1279 xdg_data_dir
, count
? "" : "wine-", name
);
1282 if (stat(dir_file_name
, &st
) != 0 && errno
== ENOENT
)
1283 write_directory_entry(lastEntry
, dir_file_name
);
1284 HeapFree(GetProcessHeap(), 0, dir_file_name
);
1287 lastEntry
= &name
[i
+1];
1293 fprintf(tempfile
, " <Include>\n");
1294 fprintf(tempfile
, " <Filename>");
1295 write_xml_text(tempfile
, name
);
1296 fprintf(tempfile
, "</Filename>\n");
1297 fprintf(tempfile
, " </Include>\n");
1298 for (i
= 0; i
< count
; i
++)
1299 fprintf(tempfile
, " </Menu>\n");
1300 fprintf(tempfile
, "</Menu>\n");
1302 menuPath
= heap_printf("%s/%s", xdg_config_dir
, name
);
1303 if (menuPath
== NULL
) goto end
;
1304 strcpy(menuPath
+ strlen(menuPath
) - strlen(".desktop"), ".menu");
1311 ret
= (rename(tempfilename
, menuPath
) == 0);
1312 if (!ret
&& tempfilename
)
1313 remove(tempfilename
);
1314 HeapFree(GetProcessHeap(), 0, tempfilename
);
1316 register_menus_entry(menuPath
, unix_link
);
1317 HeapFree(GetProcessHeap(), 0, name
);
1318 HeapFree(GetProcessHeap(), 0, menuPath
);
1322 static BOOL
write_menu_entry(const char *unix_link
, const char *link
, const char *path
, const char *args
,
1323 const char *descr
, const char *workdir
, const char *icon
)
1325 const char *linkname
;
1326 char *desktopPath
= NULL
;
1328 char *filename
= NULL
;
1331 WINE_TRACE("(%s, %s, %s, %s, %s, %s, %s)\n", wine_dbgstr_a(unix_link
), wine_dbgstr_a(link
),
1332 wine_dbgstr_a(path
), wine_dbgstr_a(args
), wine_dbgstr_a(descr
),
1333 wine_dbgstr_a(workdir
), wine_dbgstr_a(icon
));
1335 linkname
= strrchr(link
, '/');
1336 if (linkname
== NULL
)
1341 desktopPath
= heap_printf("%s/applications/wine/%s.desktop", xdg_data_dir
, link
);
1344 WINE_WARN("out of memory creating menu entry\n");
1348 desktopDir
= strrchr(desktopPath
, '/');
1350 if (!create_directories(desktopPath
))
1352 WINE_WARN("couldn't make parent directories for %s\n", wine_dbgstr_a(desktopPath
));
1357 if (!write_desktop_entry(unix_link
, desktopPath
, linkname
, path
, args
, descr
, workdir
, icon
))
1359 WINE_WARN("couldn't make desktop entry %s\n", wine_dbgstr_a(desktopPath
));
1364 filename
= heap_printf("wine/%s.desktop", link
);
1365 if (!filename
|| !write_menu_file(unix_link
, filename
))
1367 WINE_WARN("couldn't make menu file %s\n", wine_dbgstr_a(filename
));
1372 HeapFree(GetProcessHeap(), 0, desktopPath
);
1373 HeapFree(GetProcessHeap(), 0, filename
);
1377 /* This escapes reserved characters in .desktop files' Exec keys. */
1378 static LPSTR
escape(LPCWSTR arg
)
1381 WCHAR
*escaped_string
;
1384 escaped_string
= HeapAlloc(GetProcessHeap(), 0, (4 * strlenW(arg
) + 1) * sizeof(WCHAR
));
1385 if (escaped_string
== NULL
) return NULL
;
1386 for (i
= j
= 0; arg
[i
]; i
++)
1391 escaped_string
[j
++] = '\\';
1392 escaped_string
[j
++] = '\\';
1393 escaped_string
[j
++] = '\\';
1394 escaped_string
[j
++] = '\\';
1414 escaped_string
[j
++] = '\\';
1415 escaped_string
[j
++] = '\\';
1418 escaped_string
[j
++] = arg
[i
];
1422 escaped_string
[j
] = 0;
1424 utf8_string
= wchars_to_utf8_chars(escaped_string
);
1425 if (utf8_string
== NULL
)
1427 WINE_ERR("out of memory\n");
1432 HeapFree(GetProcessHeap(), 0, escaped_string
);
1436 /* Return a heap-allocated copy of the unix format difference between the two
1437 * Windows-format paths.
1438 * locn is the owning location
1439 * link is within locn
1441 static char *relative_path( LPCWSTR link
, LPCWSTR locn
)
1443 char *unix_locn
, *unix_link
;
1444 char *relative
= NULL
;
1446 unix_locn
= wine_get_unix_file_name(locn
);
1447 unix_link
= wine_get_unix_file_name(link
);
1448 if (unix_locn
&& unix_link
)
1450 size_t len_unix_locn
, len_unix_link
;
1451 len_unix_locn
= strlen (unix_locn
);
1452 len_unix_link
= strlen (unix_link
);
1453 if (len_unix_locn
< len_unix_link
&& memcmp (unix_locn
, unix_link
, len_unix_locn
) == 0 && unix_link
[len_unix_locn
] == '/')
1456 char *p
= strrchr (unix_link
+ len_unix_locn
, '/');
1457 p
= strrchr (p
, '.');
1461 len_unix_link
= p
- unix_link
;
1463 len_rel
= len_unix_link
- len_unix_locn
;
1464 relative
= HeapAlloc(GetProcessHeap(), 0, len_rel
);
1467 memcpy (relative
, unix_link
+ len_unix_locn
+ 1, len_rel
);
1472 WINE_WARN("Could not separate the relative link path of %s in %s\n", wine_dbgstr_w(link
), wine_dbgstr_w(locn
));
1473 HeapFree(GetProcessHeap(), 0, unix_locn
);
1474 HeapFree(GetProcessHeap(), 0, unix_link
);
1478 /***********************************************************************
1482 * returns TRUE if successful
1483 * *loc will contain CS_DESKTOPDIRECTORY, CS_STARTMENU, CS_STARTUP etc.
1484 * *relative will contain the address of a heap-allocated copy of the portion
1485 * of the filename that is within the specified location, in unix form
1487 static BOOL
GetLinkLocation( LPCWSTR linkfile
, DWORD
*loc
, char **relative
)
1489 WCHAR filename
[MAX_PATH
], shortfilename
[MAX_PATH
], buffer
[MAX_PATH
];
1490 DWORD len
, i
, r
, filelen
;
1491 const DWORD locations
[] = {
1492 CSIDL_STARTUP
, CSIDL_DESKTOPDIRECTORY
, CSIDL_STARTMENU
,
1493 CSIDL_COMMON_STARTUP
, CSIDL_COMMON_DESKTOPDIRECTORY
,
1494 CSIDL_COMMON_STARTMENU
};
1496 WINE_TRACE("%s\n", wine_dbgstr_w(linkfile
));
1497 filelen
=GetFullPathNameW( linkfile
, MAX_PATH
, shortfilename
, NULL
);
1498 if (filelen
==0 || filelen
>MAX_PATH
)
1501 WINE_TRACE("%s\n", wine_dbgstr_w(shortfilename
));
1503 /* the CSLU Toolkit uses a short path name when creating .lnk files;
1504 * expand or our hardcoded list won't match.
1506 filelen
=GetLongPathNameW(shortfilename
, filename
, MAX_PATH
);
1507 if (filelen
==0 || filelen
>MAX_PATH
)
1510 WINE_TRACE("%s\n", wine_dbgstr_w(filename
));
1512 for( i
=0; i
<sizeof(locations
)/sizeof(locations
[0]); i
++ )
1514 if (!SHGetSpecialFolderPathW( 0, buffer
, locations
[i
], FALSE
))
1517 len
= lstrlenW(buffer
);
1518 if (len
>= MAX_PATH
)
1519 continue; /* We've just trashed memory! Hopefully we are OK */
1521 if (len
> filelen
|| filename
[len
]!='\\')
1523 /* do a lstrcmpinW */
1525 r
= lstrcmpiW( filename
, buffer
);
1526 filename
[len
] = '\\';
1530 /* return the remainder of the string and link type */
1531 *loc
= locations
[i
];
1532 *relative
= relative_path (filename
, buffer
);
1533 return (*relative
!= NULL
);
1539 /* gets the target path directly or through MSI */
1540 static HRESULT
get_cmdline( IShellLinkW
*sl
, LPWSTR szPath
, DWORD pathSize
,
1541 LPWSTR szArgs
, DWORD argsSize
)
1543 IShellLinkDataList
*dl
= NULL
;
1544 EXP_DARWIN_LINK
*dar
= NULL
;
1550 hr
= IShellLinkW_GetPath( sl
, szPath
, pathSize
, NULL
, SLGP_RAWPATH
);
1551 if (hr
== S_OK
&& szPath
[0])
1553 IShellLinkW_GetArguments( sl
, szArgs
, argsSize
);
1557 hr
= IShellLinkW_QueryInterface( sl
, &IID_IShellLinkDataList
, (LPVOID
*) &dl
);
1561 hr
= IShellLinkDataList_CopyDataBlock( dl
, EXP_DARWIN_ID_SIG
, (LPVOID
*) &dar
);
1568 hr
= CommandLineFromMsiDescriptor( dar
->szwDarwinID
, NULL
, &cmdSize
);
1569 if (hr
== ERROR_SUCCESS
)
1572 szCmdline
= HeapAlloc( GetProcessHeap(), 0, cmdSize
*sizeof(WCHAR
) );
1573 hr
= CommandLineFromMsiDescriptor( dar
->szwDarwinID
, szCmdline
, &cmdSize
);
1574 WINE_TRACE(" command : %s\n", wine_dbgstr_w(szCmdline
));
1575 if (hr
== ERROR_SUCCESS
)
1578 int bcount
, in_quotes
;
1580 /* Extract the application path */
1587 if ((*s
==0x0009 || *s
==0x0020) && !in_quotes
)
1589 /* skip the remaining spaces */
1592 } while (*s
==0x0009 || *s
==0x0020);
1595 else if (*s
==0x005c)
1601 else if (*s
==0x0022)
1604 if ((bcount
& 1)==0)
1606 /* Preceded by an even number of '\', this is
1607 * half that number of '\', plus a quote which
1611 in_quotes
=!in_quotes
;
1616 /* Preceded by an odd number of '\', this is
1617 * half that number of '\' followed by a '"'
1627 /* a regular character */
1631 if ((d
-szPath
) == pathSize
)
1633 /* Keep processing the path till we get to the
1634 * arguments, but 'stand still'
1639 /* Close the application path */
1642 lstrcpynW(szArgs
, s
, argsSize
);
1644 HeapFree( GetProcessHeap(), 0, szCmdline
);
1649 IShellLinkDataList_Release( dl
);
1653 static WCHAR
* assoc_query(ASSOCSTR assocStr
, LPCWSTR name
, LPCWSTR extra
)
1656 WCHAR
*value
= NULL
;
1658 hr
= AssocQueryStringW(0, assocStr
, name
, extra
, NULL
, &size
);
1661 value
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
1664 hr
= AssocQueryStringW(0, assocStr
, name
, extra
, value
, &size
);
1667 HeapFree(GetProcessHeap(), 0, value
);
1675 static char *slashes_to_minuses(const char *string
)
1678 char *ret
= HeapAlloc(GetProcessHeap(), 0, lstrlenA(string
) + 1);
1681 for (i
= 0; string
[i
]; i
++)
1683 if (string
[i
] == '/')
1694 static BOOL
next_line(FILE *file
, char **line
, int *size
)
1701 *line
= HeapAlloc(GetProcessHeap(), 0, *size
);
1703 while (*line
!= NULL
)
1705 if (fgets(&(*line
)[pos
], *size
- pos
, file
) == NULL
)
1707 HeapFree(GetProcessHeap(), 0, *line
);
1713 pos
= strlen(*line
);
1714 cr
= strchr(*line
, '\n');
1719 line2
= HeapReAlloc(GetProcessHeap(), 0, *line
, *size
);
1724 HeapFree(GetProcessHeap(), 0, *line
);
1737 static BOOL
add_mimes(const char *xdg_data_dir
, struct list
*mime_types
)
1739 char *globs_filename
= NULL
;
1741 globs_filename
= heap_printf("%s/mime/globs", xdg_data_dir
);
1744 FILE *globs_file
= fopen(globs_filename
, "r");
1745 if (globs_file
) /* doesn't have to exist */
1749 while (ret
&& (ret
= next_line(globs_file
, &line
, &size
)) && line
)
1752 struct xdg_mime_type
*mime_type_entry
= NULL
;
1753 if (line
[0] != '#' && (pos
= strchr(line
, ':')))
1755 mime_type_entry
= HeapAlloc(GetProcessHeap(), 0, sizeof(struct xdg_mime_type
));
1756 if (mime_type_entry
)
1759 mime_type_entry
->mimeType
= strdupA(line
);
1760 mime_type_entry
->glob
= strdupA(pos
+ 1);
1761 if (mime_type_entry
->mimeType
&& mime_type_entry
->glob
)
1762 list_add_tail(mime_types
, &mime_type_entry
->entry
);
1765 HeapFree(GetProcessHeap(), 0, mime_type_entry
->mimeType
);
1766 HeapFree(GetProcessHeap(), 0, mime_type_entry
->glob
);
1767 HeapFree(GetProcessHeap(), 0, mime_type_entry
);
1775 HeapFree(GetProcessHeap(), 0, line
);
1778 HeapFree(GetProcessHeap(), 0, globs_filename
);
1785 static void free_native_mime_types(struct list
*native_mime_types
)
1787 struct xdg_mime_type
*mime_type_entry
, *mime_type_entry2
;
1789 LIST_FOR_EACH_ENTRY_SAFE(mime_type_entry
, mime_type_entry2
, native_mime_types
, struct xdg_mime_type
, entry
)
1791 list_remove(&mime_type_entry
->entry
);
1792 HeapFree(GetProcessHeap(), 0, mime_type_entry
->glob
);
1793 HeapFree(GetProcessHeap(), 0, mime_type_entry
->mimeType
);
1794 HeapFree(GetProcessHeap(), 0, mime_type_entry
);
1796 HeapFree(GetProcessHeap(), 0, native_mime_types
);
1799 static BOOL
build_native_mime_types(const char *xdg_data_home
, struct list
**mime_types
)
1801 char *xdg_data_dirs
;
1806 xdg_data_dirs
= getenv("XDG_DATA_DIRS");
1807 if (xdg_data_dirs
== NULL
)
1808 xdg_data_dirs
= heap_printf("/usr/local/share/:/usr/share/");
1810 xdg_data_dirs
= strdupA(xdg_data_dirs
);
1814 *mime_types
= HeapAlloc(GetProcessHeap(), 0, sizeof(struct list
));
1820 list_init(*mime_types
);
1821 ret
= add_mimes(xdg_data_home
, *mime_types
);
1824 for (begin
= xdg_data_dirs
; (end
= strchr(begin
, ':')); begin
= end
+ 1)
1827 ret
= add_mimes(begin
, *mime_types
);
1833 ret
= add_mimes(begin
, *mime_types
);
1838 HeapFree(GetProcessHeap(), 0, xdg_data_dirs
);
1842 if (!ret
&& *mime_types
)
1844 free_native_mime_types(*mime_types
);
1850 static BOOL
match_glob(struct list
*native_mime_types
, const char *extension
,
1854 struct xdg_mime_type
*mime_type_entry
;
1855 int matchLength
= 0;
1859 LIST_FOR_EACH_ENTRY(mime_type_entry
, native_mime_types
, struct xdg_mime_type
, entry
)
1861 if (fnmatch(mime_type_entry
->glob
, extension
, 0) == 0)
1863 if (*match
== NULL
|| matchLength
< strlen(mime_type_entry
->glob
))
1865 *match
= mime_type_entry
->mimeType
;
1866 matchLength
= strlen(mime_type_entry
->glob
);
1873 *match
= strdupA(*match
);
1883 static BOOL
freedesktop_mime_type_for_extension(struct list
*native_mime_types
,
1884 const char *extensionA
,
1888 WCHAR
*lower_extensionW
;
1890 BOOL ret
= match_glob(native_mime_types
, extensionA
, mime_type
);
1891 if (ret
== FALSE
|| *mime_type
!= NULL
)
1893 len
= strlenW(extensionW
);
1894 lower_extensionW
= HeapAlloc(GetProcessHeap(), 0, (len
+ 1)*sizeof(WCHAR
));
1895 if (lower_extensionW
)
1897 char *lower_extensionA
;
1898 memcpy(lower_extensionW
, extensionW
, (len
+ 1)*sizeof(WCHAR
));
1899 strlwrW(lower_extensionW
);
1900 lower_extensionA
= wchars_to_utf8_chars(lower_extensionW
);
1901 if (lower_extensionA
)
1903 ret
= match_glob(native_mime_types
, lower_extensionA
, mime_type
);
1904 HeapFree(GetProcessHeap(), 0, lower_extensionA
);
1909 WINE_FIXME("out of memory\n");
1911 HeapFree(GetProcessHeap(), 0, lower_extensionW
);
1916 WINE_FIXME("out of memory\n");
1921 static WCHAR
* reg_get_valW(HKEY key
, LPCWSTR subkey
, LPCWSTR name
)
1924 if (RegGetValueW(key
, subkey
, name
, RRF_RT_REG_SZ
, NULL
, NULL
, &size
) == ERROR_SUCCESS
)
1926 WCHAR
*ret
= HeapAlloc(GetProcessHeap(), 0, size
);
1929 if (RegGetValueW(key
, subkey
, name
, RRF_RT_REG_SZ
, NULL
, ret
, &size
) == ERROR_SUCCESS
)
1932 HeapFree(GetProcessHeap(), 0, ret
);
1937 static CHAR
* reg_get_val_utf8(HKEY key
, LPCWSTR subkey
, LPCWSTR name
)
1939 WCHAR
*valW
= reg_get_valW(key
, subkey
, name
);
1942 char *val
= wchars_to_utf8_chars(valW
);
1943 HeapFree(GetProcessHeap(), 0, valW
);
1949 static HKEY
open_associations_reg_key(void)
1951 static const WCHAR Software_Wine_FileOpenAssociationsW
[] = {
1952 'S','o','f','t','w','a','r','e','\\','W','i','n','e','\\','F','i','l','e','O','p','e','n','A','s','s','o','c','i','a','t','i','o','n','s',0};
1954 if (RegCreateKeyW(HKEY_CURRENT_USER
, Software_Wine_FileOpenAssociationsW
, &assocKey
) == ERROR_SUCCESS
)
1959 static BOOL
has_association_changed(LPCWSTR extensionW
, LPCSTR mimeType
, LPCWSTR progId
, LPCSTR appName
, LPCWSTR docName
)
1961 static const WCHAR ProgIDW
[] = {'P','r','o','g','I','D',0};
1962 static const WCHAR DocNameW
[] = {'D','o','c','N','a','m','e',0};
1963 static const WCHAR MimeTypeW
[] = {'M','i','m','e','T','y','p','e',0};
1964 static const WCHAR AppNameW
[] = {'A','p','p','N','a','m','e',0};
1968 if ((assocKey
= open_associations_reg_key()))
1975 valueA
= reg_get_val_utf8(assocKey
, extensionW
, MimeTypeW
);
1976 if (!valueA
|| lstrcmpA(valueA
, mimeType
))
1978 HeapFree(GetProcessHeap(), 0, valueA
);
1980 value
= reg_get_valW(assocKey
, extensionW
, ProgIDW
);
1981 if (!value
|| strcmpW(value
, progId
))
1983 HeapFree(GetProcessHeap(), 0, value
);
1985 valueA
= reg_get_val_utf8(assocKey
, extensionW
, AppNameW
);
1986 if (!valueA
|| lstrcmpA(valueA
, appName
))
1988 HeapFree(GetProcessHeap(), 0, valueA
);
1990 value
= reg_get_valW(assocKey
, extensionW
, DocNameW
);
1991 if (docName
&& (!value
|| strcmpW(value
, docName
)))
1993 HeapFree(GetProcessHeap(), 0, value
);
1995 RegCloseKey(assocKey
);
1999 WINE_ERR("error opening associations registry key\n");
2005 static void update_association(LPCWSTR extension
, LPCSTR mimeType
, LPCWSTR progId
, LPCSTR appName
, LPCWSTR docName
, LPCSTR desktopFile
)
2007 static const WCHAR ProgIDW
[] = {'P','r','o','g','I','D',0};
2008 static const WCHAR DocNameW
[] = {'D','o','c','N','a','m','e',0};
2009 static const WCHAR MimeTypeW
[] = {'M','i','m','e','T','y','p','e',0};
2010 static const WCHAR AppNameW
[] = {'A','p','p','N','a','m','e',0};
2011 static const WCHAR DesktopFileW
[] = {'D','e','s','k','t','o','p','F','i','l','e',0};
2012 HKEY assocKey
= NULL
;
2014 WCHAR
*mimeTypeW
= NULL
;
2015 WCHAR
*appNameW
= NULL
;
2016 WCHAR
*desktopFileW
= NULL
;
2018 assocKey
= open_associations_reg_key();
2019 if (assocKey
== NULL
)
2021 WINE_ERR("could not open file associations key\n");
2025 if (RegCreateKeyW(assocKey
, extension
, &subkey
) != ERROR_SUCCESS
)
2027 WINE_ERR("could not create extension subkey\n");
2031 mimeTypeW
= utf8_chars_to_wchars(mimeType
);
2032 if (mimeTypeW
== NULL
)
2034 WINE_ERR("out of memory\n");
2038 appNameW
= utf8_chars_to_wchars(appName
);
2039 if (appNameW
== NULL
)
2041 WINE_ERR("out of memory\n");
2045 desktopFileW
= utf8_chars_to_wchars(desktopFile
);
2046 if (desktopFileW
== NULL
)
2048 WINE_ERR("out of memory\n");
2052 RegSetValueExW(subkey
, MimeTypeW
, 0, REG_SZ
, (const BYTE
*) mimeTypeW
, (lstrlenW(mimeTypeW
) + 1) * sizeof(WCHAR
));
2053 RegSetValueExW(subkey
, ProgIDW
, 0, REG_SZ
, (const BYTE
*) progId
, (lstrlenW(progId
) + 1) * sizeof(WCHAR
));
2054 RegSetValueExW(subkey
, AppNameW
, 0, REG_SZ
, (const BYTE
*) appNameW
, (lstrlenW(appNameW
) + 1) * sizeof(WCHAR
));
2056 RegSetValueExW(subkey
, DocNameW
, 0, REG_SZ
, (const BYTE
*) docName
, (lstrlenW(docName
) + 1) * sizeof(WCHAR
));
2057 RegSetValueExW(subkey
, DesktopFileW
, 0, REG_SZ
, (const BYTE
*) desktopFileW
, (lstrlenW(desktopFileW
) + 1) * sizeof(WCHAR
));
2060 RegCloseKey(assocKey
);
2061 RegCloseKey(subkey
);
2062 HeapFree(GetProcessHeap(), 0, mimeTypeW
);
2063 HeapFree(GetProcessHeap(), 0, appNameW
);
2064 HeapFree(GetProcessHeap(), 0, desktopFileW
);
2067 static BOOL
cleanup_associations(void)
2069 static const WCHAR openW
[] = {'o','p','e','n',0};
2070 static const WCHAR DesktopFileW
[] = {'D','e','s','k','t','o','p','F','i','l','e',0};
2072 BOOL hasChanged
= FALSE
;
2073 if ((assocKey
= open_associations_reg_key()))
2077 for (i
= 0; !done
; i
++)
2079 WCHAR
*extensionW
= NULL
;
2085 HeapFree(GetProcessHeap(), 0, extensionW
);
2086 extensionW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
2087 if (extensionW
== NULL
)
2089 WINE_ERR("out of memory\n");
2090 ret
= ERROR_OUTOFMEMORY
;
2093 ret
= RegEnumKeyExW(assocKey
, i
, extensionW
, &size
, NULL
, NULL
, NULL
, NULL
);
2095 } while (ret
== ERROR_MORE_DATA
);
2097 if (ret
== ERROR_SUCCESS
)
2100 command
= assoc_query(ASSOCSTR_COMMAND
, extensionW
, openW
);
2101 if (command
== NULL
)
2103 char *desktopFile
= reg_get_val_utf8(assocKey
, extensionW
, DesktopFileW
);
2106 WINE_TRACE("removing file type association for %s\n", wine_dbgstr_w(extensionW
));
2107 remove(desktopFile
);
2109 RegDeleteKeyW(assocKey
, extensionW
);
2111 HeapFree(GetProcessHeap(), 0, desktopFile
);
2113 HeapFree(GetProcessHeap(), 0, command
);
2117 if (ret
!= ERROR_NO_MORE_ITEMS
)
2118 WINE_ERR("error %d while reading registry\n", ret
);
2121 HeapFree(GetProcessHeap(), 0, extensionW
);
2123 RegCloseKey(assocKey
);
2126 WINE_ERR("could not open file associations key\n");
2130 static BOOL
write_freedesktop_mime_type_entry(const char *packages_dir
, const char *dot_extension
,
2131 const char *mime_type
, const char *comment
)
2136 WINE_TRACE("writing MIME type %s, extension=%s, comment=%s\n", wine_dbgstr_a(mime_type
),
2137 wine_dbgstr_a(dot_extension
), wine_dbgstr_a(comment
));
2139 filename
= heap_printf("%s/x-wine-extension-%s.xml", packages_dir
, &dot_extension
[1]);
2142 FILE *packageFile
= fopen(filename
, "w");
2145 fprintf(packageFile
, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
2146 fprintf(packageFile
, "<mime-info xmlns=\"http://www.freedesktop.org/standards/shared-mime-info\">\n");
2147 fprintf(packageFile
, " <mime-type type=\"");
2148 write_xml_text(packageFile
, mime_type
);
2149 fprintf(packageFile
, "\">\n");
2150 fprintf(packageFile
, " <glob pattern=\"*");
2151 write_xml_text(packageFile
, dot_extension
);
2152 fprintf(packageFile
, "\"/>\n");
2155 fprintf(packageFile
, " <comment>");
2156 write_xml_text(packageFile
, comment
);
2157 fprintf(packageFile
, "</comment>\n");
2159 fprintf(packageFile
, " </mime-type>\n");
2160 fprintf(packageFile
, "</mime-info>\n");
2162 fclose(packageFile
);
2165 WINE_ERR("error writing file %s\n", filename
);
2166 HeapFree(GetProcessHeap(), 0, filename
);
2169 WINE_ERR("out of memory\n");
2173 static BOOL
is_extension_blacklisted(LPCWSTR extension
)
2175 /* These are managed through external tools like wine.desktop, to evade malware created file type associations */
2176 static const WCHAR comW
[] = {'.','c','o','m',0};
2177 static const WCHAR exeW
[] = {'.','e','x','e',0};
2178 static const WCHAR msiW
[] = {'.','m','s','i',0};
2180 if (!strcmpiW(extension
, comW
) ||
2181 !strcmpiW(extension
, exeW
) ||
2182 !strcmpiW(extension
, msiW
))
2187 static const char* get_special_mime_type(LPCWSTR extension
)
2189 static const WCHAR lnkW
[] = {'.','l','n','k',0};
2190 if (!strcmpiW(extension
, lnkW
))
2191 return "application/x-ms-shortcut";
2195 static BOOL
write_freedesktop_association_entry(const char *desktopPath
, const char *dot_extension
,
2196 const char *friendlyAppName
, const char *mimeType
,
2202 WINE_TRACE("writing association for file type %s, friendlyAppName=%s, MIME type %s, progID=%s, to file %s\n",
2203 wine_dbgstr_a(dot_extension
), wine_dbgstr_a(friendlyAppName
), wine_dbgstr_a(mimeType
),
2204 wine_dbgstr_a(progId
), wine_dbgstr_a(desktopPath
));
2206 desktop
= fopen(desktopPath
, "w");
2209 fprintf(desktop
, "[Desktop Entry]\n");
2210 fprintf(desktop
, "Type=Application\n");
2211 fprintf(desktop
, "Name=%s\n", friendlyAppName
);
2212 fprintf(desktop
, "MimeType=%s\n", mimeType
);
2213 fprintf(desktop
, "Exec=wine start /ProgIDOpen %s %%f\n", progId
);
2214 fprintf(desktop
, "NoDisplay=true\n");
2215 fprintf(desktop
, "StartupNotify=true\n");
2220 WINE_ERR("error writing association file %s\n", wine_dbgstr_a(desktopPath
));
2224 static BOOL
generate_associations(const char *xdg_data_home
, const char *packages_dir
, const char *applications_dir
)
2226 static const WCHAR openW
[] = {'o','p','e','n',0};
2227 struct list
*nativeMimeTypes
= NULL
;
2230 BOOL hasChanged
= FALSE
;
2232 if (!build_native_mime_types(xdg_data_home
, &nativeMimeTypes
))
2234 WINE_ERR("could not build native MIME types\n");
2240 WCHAR
*extensionW
= NULL
;
2245 HeapFree(GetProcessHeap(), 0, extensionW
);
2246 extensionW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
2247 if (extensionW
== NULL
)
2249 WINE_ERR("out of memory\n");
2250 ret
= ERROR_OUTOFMEMORY
;
2253 ret
= RegEnumKeyExW(HKEY_CLASSES_ROOT
, i
, extensionW
, &size
, NULL
, NULL
, NULL
, NULL
);
2255 } while (ret
== ERROR_MORE_DATA
);
2257 if (ret
== ERROR_SUCCESS
&& extensionW
[0] == '.' && !is_extension_blacklisted(extensionW
))
2259 char *extensionA
= NULL
;
2260 WCHAR
*commandW
= NULL
;
2261 WCHAR
*friendlyDocNameW
= NULL
;
2262 char *friendlyDocNameA
= NULL
;
2263 WCHAR
*iconW
= NULL
;
2265 WCHAR
*contentTypeW
= NULL
;
2266 char *mimeTypeA
= NULL
;
2267 WCHAR
*friendlyAppNameW
= NULL
;
2268 char *friendlyAppNameA
= NULL
;
2269 WCHAR
*progIdW
= NULL
;
2270 char *progIdA
= NULL
;
2272 extensionA
= wchars_to_utf8_chars(extensionW
);
2273 if (extensionA
== NULL
)
2275 WINE_ERR("out of memory\n");
2279 friendlyDocNameW
= assoc_query(ASSOCSTR_FRIENDLYDOCNAME
, extensionW
, NULL
);
2280 if (friendlyDocNameW
)
2282 friendlyDocNameA
= wchars_to_utf8_chars(friendlyDocNameW
);
2283 if (friendlyDocNameA
== NULL
)
2285 WINE_ERR("out of memory\n");
2290 iconW
= assoc_query(ASSOCSTR_DEFAULTICON
, extensionW
, NULL
);
2292 contentTypeW
= assoc_query(ASSOCSTR_CONTENTTYPE
, extensionW
, NULL
);
2294 strlwrW(contentTypeW
);
2296 if (!freedesktop_mime_type_for_extension(nativeMimeTypes
, extensionA
, extensionW
, &mimeTypeA
))
2299 if (mimeTypeA
== NULL
)
2301 if (contentTypeW
!= NULL
&& strchrW(contentTypeW
, '/'))
2302 mimeTypeA
= wchars_to_utf8_chars(contentTypeW
);
2303 else if ((get_special_mime_type(extensionW
)))
2304 mimeTypeA
= strdupA(get_special_mime_type(extensionW
));
2306 mimeTypeA
= heap_printf("application/x-wine-extension-%s", &extensionA
[1]);
2308 if (mimeTypeA
!= NULL
)
2310 /* Gnome seems to ignore the <icon> tag in MIME packages,
2311 * and the default name is more intuitive anyway.
2315 char *flattened_mime
= slashes_to_minuses(mimeTypeA
);
2319 WCHAR
*comma
= strrchrW(iconW
, ',');
2323 index
= atoiW(comma
+ 1);
2325 iconA
= extract_icon(iconW
, index
, flattened_mime
, FALSE
);
2326 HeapFree(GetProcessHeap(), 0, flattened_mime
);
2330 write_freedesktop_mime_type_entry(packages_dir
, extensionA
, mimeTypeA
, friendlyDocNameA
);
2335 WINE_FIXME("out of memory\n");
2340 commandW
= assoc_query(ASSOCSTR_COMMAND
, extensionW
, openW
);
2341 if (commandW
== NULL
)
2342 /* no command => no application is associated */
2345 friendlyAppNameW
= assoc_query(ASSOCSTR_FRIENDLYAPPNAME
, extensionW
, NULL
);
2346 if (friendlyAppNameW
)
2348 friendlyAppNameA
= wchars_to_utf8_chars(friendlyAppNameW
);
2349 if (friendlyAppNameA
== NULL
)
2351 WINE_ERR("out of memory\n");
2357 friendlyAppNameA
= heap_printf("A Wine application");
2358 if (friendlyAppNameA
== NULL
)
2360 WINE_ERR("out of memory\n");
2365 progIdW
= reg_get_valW(HKEY_CLASSES_ROOT
, extensionW
, NULL
);
2368 progIdA
= escape(progIdW
);
2369 if (progIdA
== NULL
)
2371 WINE_ERR("out of memory\n");
2376 goto end
; /* no progID => not a file type association */
2378 if (has_association_changed(extensionW
, mimeTypeA
, progIdW
, friendlyAppNameA
, friendlyDocNameW
))
2380 char *desktopPath
= heap_printf("%s/wine-extension-%s.desktop", applications_dir
, &extensionA
[1]);
2383 if (write_freedesktop_association_entry(desktopPath
, extensionA
, friendlyAppNameA
, mimeTypeA
, progIdA
))
2386 update_association(extensionW
, mimeTypeA
, progIdW
, friendlyAppNameA
, friendlyDocNameW
, desktopPath
);
2388 HeapFree(GetProcessHeap(), 0, desktopPath
);
2393 HeapFree(GetProcessHeap(), 0, extensionA
);
2394 HeapFree(GetProcessHeap(), 0, commandW
);
2395 HeapFree(GetProcessHeap(), 0, friendlyDocNameW
);
2396 HeapFree(GetProcessHeap(), 0, friendlyDocNameA
);
2397 HeapFree(GetProcessHeap(), 0, iconW
);
2398 HeapFree(GetProcessHeap(), 0, iconA
);
2399 HeapFree(GetProcessHeap(), 0, contentTypeW
);
2400 HeapFree(GetProcessHeap(), 0, mimeTypeA
);
2401 HeapFree(GetProcessHeap(), 0, friendlyAppNameW
);
2402 HeapFree(GetProcessHeap(), 0, friendlyAppNameA
);
2403 HeapFree(GetProcessHeap(), 0, progIdW
);
2404 HeapFree(GetProcessHeap(), 0, progIdA
);
2406 HeapFree(GetProcessHeap(), 0, extensionW
);
2407 if (ret
!= ERROR_SUCCESS
)
2411 free_native_mime_types(nativeMimeTypes
);
2415 static char *get_start_exe_path(void)
2417 static const WCHAR startW
[] = {'\\','c','o','m','m','a','n','d',
2418 '\\','s','t','a','r','t','.','e','x','e',0};
2419 WCHAR start_path
[MAX_PATH
];
2420 GetWindowsDirectoryW(start_path
, MAX_PATH
);
2421 lstrcatW(start_path
, startW
);
2422 return escape(start_path
);
2425 static BOOL
InvokeShellLinker( IShellLinkW
*sl
, LPCWSTR link
, BOOL bWait
)
2427 static const WCHAR startW
[] = {'\\','c','o','m','m','a','n','d',
2428 '\\','s','t','a','r','t','.','e','x','e',0};
2429 char *link_name
= NULL
, *icon_name
= NULL
, *work_dir
= NULL
;
2430 char *escaped_path
= NULL
, *escaped_args
= NULL
, *description
= NULL
;
2431 WCHAR szTmp
[INFOTIPSIZE
];
2432 WCHAR szDescription
[INFOTIPSIZE
], szPath
[MAX_PATH
], szWorkDir
[MAX_PATH
];
2433 WCHAR szArgs
[INFOTIPSIZE
], szIconPath
[MAX_PATH
];
2434 int iIconId
= 0, r
= -1;
2437 char *unix_link
= NULL
;
2438 char *start_path
= NULL
;
2442 WINE_ERR("Link name is null\n");
2446 if( !GetLinkLocation( link
, &csidl
, &link_name
) )
2448 WINE_WARN("Unknown link location %s. Ignoring.\n",wine_dbgstr_w(link
));
2451 if (!in_desktop_dir(csidl
) && !in_startmenu(csidl
))
2453 WINE_WARN("Not under desktop or start menu. Ignoring.\n");
2456 WINE_TRACE("Link : %s\n", wine_dbgstr_a(link_name
));
2459 IShellLinkW_GetWorkingDirectory( sl
, szTmp
, MAX_PATH
);
2460 ExpandEnvironmentStringsW(szTmp
, szWorkDir
, MAX_PATH
);
2461 WINE_TRACE("workdir : %s\n", wine_dbgstr_w(szWorkDir
));
2464 IShellLinkW_GetDescription( sl
, szTmp
, INFOTIPSIZE
);
2465 ExpandEnvironmentStringsW(szTmp
, szDescription
, INFOTIPSIZE
);
2466 WINE_TRACE("description: %s\n", wine_dbgstr_w(szDescription
));
2468 get_cmdline( sl
, szTmp
, MAX_PATH
, szArgs
, INFOTIPSIZE
);
2469 ExpandEnvironmentStringsW(szTmp
, szPath
, MAX_PATH
);
2470 WINE_TRACE("path : %s\n", wine_dbgstr_w(szPath
));
2471 WINE_TRACE("args : %s\n", wine_dbgstr_w(szArgs
));
2474 IShellLinkW_GetIconLocation( sl
, szTmp
, MAX_PATH
, &iIconId
);
2475 ExpandEnvironmentStringsW(szTmp
, szIconPath
, MAX_PATH
);
2476 WINE_TRACE("icon file : %s\n", wine_dbgstr_w(szIconPath
) );
2480 LPITEMIDLIST pidl
= NULL
;
2481 IShellLinkW_GetIDList( sl
, &pidl
);
2482 if( pidl
&& SHGetPathFromIDListW( pidl
, szPath
) )
2483 WINE_TRACE("pidl path : %s\n", wine_dbgstr_w(szPath
));
2486 /* extract the icon */
2488 icon_name
= extract_icon( szIconPath
, iIconId
, NULL
, bWait
);
2490 icon_name
= extract_icon( szPath
, iIconId
, NULL
, bWait
);
2492 /* fail - try once again after parent process exit */
2497 WINE_WARN("Unable to extract icon, deferring.\n");
2500 WINE_ERR("failed to extract icon from %s\n",
2501 wine_dbgstr_w( szIconPath
[0] ? szIconPath
: szPath
));
2504 unix_link
= wine_get_unix_file_name(link
);
2505 if (unix_link
== NULL
)
2507 WINE_WARN("couldn't find unix path of %s\n", wine_dbgstr_w(link
));
2511 /* check the path */
2514 static const WCHAR exeW
[] = {'.','e','x','e',0};
2517 /* check for .exe extension */
2518 if (!(p
= strrchrW( szPath
, '.' )) ||
2519 strchrW( p
, '\\' ) || strchrW( p
, '/' ) ||
2520 lstrcmpiW( p
, exeW
))
2522 /* Not .exe - use 'start.exe' to launch this file */
2523 p
= szArgs
+ lstrlenW(szPath
) + 2;
2527 memmove( p
+1, szArgs
, min( (lstrlenW(szArgs
) + 1) * sizeof(szArgs
[0]),
2528 sizeof(szArgs
) - (p
+ 1 - szArgs
) * sizeof(szArgs
[0]) ) );
2534 lstrcpyW(szArgs
+ 1, szPath
);
2537 GetWindowsDirectoryW(szPath
, MAX_PATH
);
2538 lstrcatW(szPath
, startW
);
2541 /* convert app working dir */
2543 work_dir
= wine_get_unix_file_name( szWorkDir
);
2547 /* if there's no path... try run the link itself */
2548 lstrcpynW(szArgs
, link
, MAX_PATH
);
2549 GetWindowsDirectoryW(szPath
, MAX_PATH
);
2550 lstrcatW(szPath
, startW
);
2553 /* escape the path and parameters */
2554 escaped_path
= escape(szPath
);
2555 escaped_args
= escape(szArgs
);
2556 description
= wchars_to_utf8_chars(szDescription
);
2557 if (escaped_path
== NULL
|| escaped_args
== NULL
|| description
== NULL
)
2559 WINE_ERR("out of memory allocating/escaping parameters\n");
2563 start_path
= get_start_exe_path();
2564 if (start_path
== NULL
)
2566 WINE_ERR("out of memory\n");
2570 /* building multiple menus concurrently has race conditions */
2571 hsem
= CreateSemaphoreA( NULL
, 1, 1, "winemenubuilder_semaphore");
2572 if( WAIT_OBJECT_0
!= MsgWaitForMultipleObjects( 1, &hsem
, FALSE
, INFINITE
, QS_ALLINPUT
) )
2574 WINE_ERR("failed wait for semaphore\n");
2578 if (in_desktop_dir(csidl
))
2581 const char *lastEntry
;
2582 lastEntry
= strrchr(link_name
, '/');
2583 if (lastEntry
== NULL
)
2584 lastEntry
= link_name
;
2587 location
= heap_printf("%s/%s.desktop", xdg_desktop_dir
, lastEntry
);
2590 r
= !write_desktop_entry(NULL
, location
, lastEntry
, escaped_path
, escaped_args
, description
, work_dir
, icon_name
);
2592 chmod(location
, 0755);
2593 HeapFree(GetProcessHeap(), 0, location
);
2598 WCHAR
*unix_linkW
= utf8_chars_to_wchars(unix_link
);
2601 char *escaped_lnk
= escape(unix_linkW
);
2604 char *menuarg
= heap_printf("/Unix %s", escaped_lnk
);
2607 r
= !write_menu_entry(unix_link
, link_name
, start_path
, menuarg
, description
, work_dir
, icon_name
);
2608 HeapFree(GetProcessHeap(), 0, menuarg
);
2610 HeapFree(GetProcessHeap(), 0, escaped_lnk
);
2612 HeapFree(GetProcessHeap(), 0, unix_linkW
);
2616 ReleaseSemaphore( hsem
, 1, NULL
);
2619 if (hsem
) CloseHandle( hsem
);
2620 HeapFree( GetProcessHeap(), 0, icon_name
);
2621 HeapFree( GetProcessHeap(), 0, work_dir
);
2622 HeapFree( GetProcessHeap(), 0, link_name
);
2623 HeapFree( GetProcessHeap(), 0, escaped_args
);
2624 HeapFree( GetProcessHeap(), 0, escaped_path
);
2625 HeapFree( GetProcessHeap(), 0, description
);
2626 HeapFree( GetProcessHeap(), 0, unix_link
);
2627 HeapFree( GetProcessHeap(), 0, start_path
);
2630 WINE_ERR("failed to build the menu\n" );
2635 static BOOL
InvokeShellLinkerForURL( IUniformResourceLocatorW
*url
, LPCWSTR link
, BOOL bWait
)
2637 char *link_name
= NULL
;
2640 char *escaped_urlPath
= NULL
;
2645 char *unix_link
= NULL
;
2649 WINE_ERR("Link name is null\n");
2653 if( !GetLinkLocation( link
, &csidl
, &link_name
) )
2655 WINE_WARN("Unknown link location %s. Ignoring.\n",wine_dbgstr_w(link
));
2658 if (!in_desktop_dir(csidl
) && !in_startmenu(csidl
))
2660 WINE_WARN("Not under desktop or start menu. Ignoring.\n");
2664 WINE_TRACE("Link : %s\n", wine_dbgstr_a(link_name
));
2666 hr
= url
->lpVtbl
->GetURL(url
, &urlPath
);
2672 WINE_TRACE("path : %s\n", wine_dbgstr_w(urlPath
));
2674 unix_link
= wine_get_unix_file_name(link
);
2675 if (unix_link
== NULL
)
2677 WINE_WARN("couldn't find unix path of %s\n", wine_dbgstr_w(link
));
2681 escaped_urlPath
= escape(urlPath
);
2682 if (escaped_urlPath
== NULL
)
2684 WINE_ERR("couldn't escape url, out of memory\n");
2688 hSem
= CreateSemaphoreA( NULL
, 1, 1, "winemenubuilder_semaphore");
2689 if( WAIT_OBJECT_0
!= MsgWaitForMultipleObjects( 1, &hSem
, FALSE
, INFINITE
, QS_ALLINPUT
) )
2691 WINE_ERR("failed wait for semaphore\n");
2694 if (in_desktop_dir(csidl
))
2697 const char *lastEntry
;
2698 lastEntry
= strrchr(link_name
, '/');
2699 if (lastEntry
== NULL
)
2700 lastEntry
= link_name
;
2703 location
= heap_printf("%s/%s.desktop", xdg_desktop_dir
, lastEntry
);
2706 r
= !write_desktop_entry(NULL
, location
, lastEntry
, "winebrowser", escaped_urlPath
, NULL
, NULL
, NULL
);
2708 chmod(location
, 0755);
2709 HeapFree(GetProcessHeap(), 0, location
);
2713 r
= !write_menu_entry(unix_link
, link_name
, "winebrowser", escaped_urlPath
, NULL
, NULL
, NULL
);
2715 ReleaseSemaphore(hSem
, 1, NULL
);
2720 HeapFree(GetProcessHeap(), 0, link_name
);
2721 CoTaskMemFree( urlPath
);
2722 HeapFree(GetProcessHeap(), 0, escaped_urlPath
);
2723 HeapFree(GetProcessHeap(), 0, unix_link
);
2727 static BOOL
WaitForParentProcess( void )
2729 PROCESSENTRY32 procentry
;
2730 HANDLE hsnapshot
= NULL
, hprocess
= NULL
;
2731 DWORD ourpid
= GetCurrentProcessId();
2732 BOOL ret
= FALSE
, rc
;
2734 WINE_TRACE("Waiting for parent process\n");
2735 if ((hsnapshot
= CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS
, 0 )) ==
2736 INVALID_HANDLE_VALUE
)
2738 WINE_ERR("CreateToolhelp32Snapshot failed, error %d\n", GetLastError());
2742 procentry
.dwSize
= sizeof(PROCESSENTRY32
);
2743 rc
= Process32First( hsnapshot
, &procentry
);
2746 if (procentry
.th32ProcessID
== ourpid
) break;
2747 rc
= Process32Next( hsnapshot
, &procentry
);
2751 WINE_WARN("Unable to find current process id %d when listing processes\n", ourpid
);
2755 if ((hprocess
= OpenProcess( SYNCHRONIZE
, FALSE
, procentry
.th32ParentProcessID
)) ==
2758 WINE_WARN("OpenProcess failed pid=%d, error %d\n", procentry
.th32ParentProcessID
,
2763 if (MsgWaitForMultipleObjects( 1, &hprocess
, FALSE
, INFINITE
, QS_ALLINPUT
) == WAIT_OBJECT_0
)
2766 WINE_ERR("Unable to wait for parent process, error %d\n", GetLastError());
2769 if (hprocess
) CloseHandle( hprocess
);
2770 if (hsnapshot
) CloseHandle( hsnapshot
);
2774 static BOOL
Process_Link( LPCWSTR linkname
, BOOL bWait
)
2779 WCHAR fullname
[MAX_PATH
];
2782 WINE_TRACE("%s, wait %d\n", wine_dbgstr_w(linkname
), bWait
);
2786 WINE_ERR("link name missing\n");
2790 len
=GetFullPathNameW( linkname
, MAX_PATH
, fullname
, NULL
);
2791 if (len
==0 || len
>MAX_PATH
)
2793 WINE_ERR("couldn't get full path of link file\n");
2797 r
= CoInitialize( NULL
);
2800 WINE_ERR("CoInitialize failed\n");
2804 r
= CoCreateInstance( &CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
2805 &IID_IShellLinkW
, (LPVOID
*) &sl
);
2808 WINE_ERR("No IID_IShellLink\n");
2812 r
= IShellLinkW_QueryInterface( sl
, &IID_IPersistFile
, (LPVOID
*) &pf
);
2815 WINE_ERR("No IID_IPersistFile\n");
2819 r
= IPersistFile_Load( pf
, fullname
, STGM_READ
);
2820 if( SUCCEEDED( r
) )
2822 /* If something fails (eg. Couldn't extract icon)
2823 * wait for parent process and try again
2825 if( ! InvokeShellLinker( sl
, fullname
, bWait
) && bWait
)
2827 WaitForParentProcess();
2828 InvokeShellLinker( sl
, fullname
, FALSE
);
2833 WINE_ERR("unable to load %s\n", wine_dbgstr_w(linkname
));
2836 IPersistFile_Release( pf
);
2837 IShellLinkW_Release( sl
);
2844 static BOOL
Process_URL( LPCWSTR urlname
, BOOL bWait
)
2846 IUniformResourceLocatorW
*url
;
2849 WCHAR fullname
[MAX_PATH
];
2852 WINE_TRACE("%s, wait %d\n", wine_dbgstr_w(urlname
), bWait
);
2856 WINE_ERR("URL name missing\n");
2860 len
=GetFullPathNameW( urlname
, MAX_PATH
, fullname
, NULL
);
2861 if (len
==0 || len
>MAX_PATH
)
2863 WINE_ERR("couldn't get full path of URL file\n");
2867 r
= CoInitialize( NULL
);
2870 WINE_ERR("CoInitialize failed\n");
2874 r
= CoCreateInstance( &CLSID_InternetShortcut
, NULL
, CLSCTX_INPROC_SERVER
,
2875 &IID_IUniformResourceLocatorW
, (LPVOID
*) &url
);
2878 WINE_ERR("No IID_IUniformResourceLocatorW\n");
2882 r
= url
->lpVtbl
->QueryInterface( url
, &IID_IPersistFile
, (LPVOID
*) &pf
);
2885 WINE_ERR("No IID_IPersistFile\n");
2888 r
= IPersistFile_Load( pf
, fullname
, STGM_READ
);
2889 if( SUCCEEDED( r
) )
2891 /* If something fails (eg. Couldn't extract icon)
2892 * wait for parent process and try again
2894 if( ! InvokeShellLinkerForURL( url
, fullname
, bWait
) && bWait
)
2896 WaitForParentProcess();
2897 InvokeShellLinkerForURL( url
, fullname
, FALSE
);
2901 IPersistFile_Release( pf
);
2902 url
->lpVtbl
->Release( url
);
2909 static void RefreshFileTypeAssociations(void)
2912 char *mime_dir
= NULL
;
2913 char *packages_dir
= NULL
;
2914 char *applications_dir
= NULL
;
2917 hSem
= CreateSemaphoreA( NULL
, 1, 1, "winemenubuilder_semaphore");
2918 if( WAIT_OBJECT_0
!= MsgWaitForMultipleObjects( 1, &hSem
, FALSE
, INFINITE
, QS_ALLINPUT
) )
2920 WINE_ERR("failed wait for semaphore\n");
2926 mime_dir
= heap_printf("%s/mime", xdg_data_dir
);
2927 if (mime_dir
== NULL
)
2929 WINE_ERR("out of memory\n");
2932 create_directories(mime_dir
);
2934 packages_dir
= heap_printf("%s/packages", mime_dir
);
2935 if (packages_dir
== NULL
)
2937 WINE_ERR("out of memory\n");
2940 create_directories(packages_dir
);
2942 applications_dir
= heap_printf("%s/applications", xdg_data_dir
);
2943 if (applications_dir
== NULL
)
2945 WINE_ERR("out of memory\n");
2948 create_directories(applications_dir
);
2950 hasChanged
= generate_associations(xdg_data_dir
, packages_dir
, applications_dir
);
2951 hasChanged
|= cleanup_associations();
2954 const char *argv
[3];
2956 argv
[0] = "update-mime-database";
2959 spawnvp( _P_NOWAIT
, argv
[0], argv
);
2961 argv
[0] = "update-desktop-database";
2962 argv
[1] = applications_dir
;
2963 spawnvp( _P_NOWAIT
, argv
[0], argv
);
2969 ReleaseSemaphore(hSem
, 1, NULL
);
2972 HeapFree(GetProcessHeap(), 0, mime_dir
);
2973 HeapFree(GetProcessHeap(), 0, packages_dir
);
2974 HeapFree(GetProcessHeap(), 0, applications_dir
);
2977 static void cleanup_menus(void)
2981 hkey
= open_menus_reg_key();
2985 LSTATUS lret
= ERROR_SUCCESS
;
2986 for (i
= 0; lret
== ERROR_SUCCESS
; )
2988 WCHAR
*value
= NULL
;
2990 DWORD valueSize
= 4096;
2991 DWORD dataSize
= 4096;
2994 lret
= ERROR_OUTOFMEMORY
;
2995 value
= HeapAlloc(GetProcessHeap(), 0, valueSize
* sizeof(WCHAR
));
2998 data
= HeapAlloc(GetProcessHeap(), 0, dataSize
* sizeof(WCHAR
));
3001 lret
= RegEnumValueW(hkey
, i
, value
, &valueSize
, NULL
, NULL
, (BYTE
*)data
, &dataSize
);
3002 if (lret
== ERROR_SUCCESS
|| lret
!= ERROR_MORE_DATA
)
3006 HeapFree(GetProcessHeap(), 0, value
);
3007 HeapFree(GetProcessHeap(), 0, data
);
3008 value
= data
= NULL
;
3010 if (lret
== ERROR_SUCCESS
)
3014 unix_file
= wchars_to_unix_chars(value
);
3015 windows_file
= wchars_to_unix_chars(data
);
3016 if (unix_file
!= NULL
&& windows_file
!= NULL
)
3018 struct stat filestats
;
3019 if (stat(windows_file
, &filestats
) < 0 && errno
== ENOENT
)
3021 WINE_TRACE("removing menu related file %s\n", unix_file
);
3023 RegDeleteValueW(hkey
, value
);
3030 WINE_ERR("out of memory enumerating menus\n");
3031 lret
= ERROR_OUTOFMEMORY
;
3033 HeapFree(GetProcessHeap(), 0, unix_file
);
3034 HeapFree(GetProcessHeap(), 0, windows_file
);
3036 else if (lret
!= ERROR_NO_MORE_ITEMS
)
3037 WINE_ERR("error %d reading registry\n", lret
);
3038 HeapFree(GetProcessHeap(), 0, value
);
3039 HeapFree(GetProcessHeap(), 0, data
);
3044 WINE_ERR("error opening registry key, menu cleanup failed\n");
3047 static WCHAR
*next_token( LPWSTR
*p
)
3049 LPWSTR token
= NULL
, t
= *p
;
3054 while( t
&& !token
)
3062 /* unquote the token */
3064 t
= strchrW( token
, '"' );
3073 t
= strchrW( token
, ' ' );
3083 static BOOL
init_xdg(void)
3085 WCHAR shellDesktopPath
[MAX_PATH
];
3086 HRESULT hr
= SHGetFolderPathW(NULL
, CSIDL_DESKTOP
, NULL
, SHGFP_TYPE_CURRENT
, shellDesktopPath
);
3088 xdg_desktop_dir
= wine_get_unix_file_name(shellDesktopPath
);
3089 if (xdg_desktop_dir
== NULL
)
3091 WINE_ERR("error looking up the desktop directory\n");
3095 if (getenv("XDG_CONFIG_HOME"))
3096 xdg_config_dir
= heap_printf("%s/menus/applications-merged", getenv("XDG_CONFIG_HOME"));
3098 xdg_config_dir
= heap_printf("%s/.config/menus/applications-merged", getenv("HOME"));
3101 create_directories(xdg_config_dir
);
3102 if (getenv("XDG_DATA_HOME"))
3103 xdg_data_dir
= strdupA(getenv("XDG_DATA_HOME"));
3105 xdg_data_dir
= heap_printf("%s/.local/share", getenv("HOME"));
3109 create_directories(xdg_data_dir
);
3110 buffer
= heap_printf("%s/desktop-directories", xdg_data_dir
);
3113 mkdir(buffer
, 0777);
3114 HeapFree(GetProcessHeap(), 0, buffer
);
3118 HeapFree(GetProcessHeap(), 0, xdg_config_dir
);
3120 WINE_ERR("out of memory\n");
3124 /***********************************************************************
3128 int PASCAL
wWinMain (HINSTANCE hInstance
, HINSTANCE prev
, LPWSTR cmdline
, int show
)
3130 static const WCHAR dash_aW
[] = {'-','a',0};
3131 static const WCHAR dash_rW
[] = {'-','r',0};
3132 static const WCHAR dash_uW
[] = {'-','u',0};
3133 static const WCHAR dash_wW
[] = {'-','w',0};
3135 LPWSTR token
= NULL
, p
;
3143 for( p
= cmdline
; p
&& *p
; )
3145 token
= next_token( &p
);
3148 if( !strcmpW( token
, dash_aW
) )
3150 RefreshFileTypeAssociations();
3153 if( !strcmpW( token
, dash_rW
) )
3158 if( !strcmpW( token
, dash_wW
) )
3160 else if ( !strcmpW( token
, dash_uW
) )
3162 else if( token
[0] == '-' )
3164 WINE_ERR( "unknown option %s\n", wine_dbgstr_w(token
) );
3171 bRet
= Process_URL( token
, bWait
);
3173 bRet
= Process_Link( token
, bWait
);
3176 WINE_ERR( "failed to build menu item for %s\n", wine_dbgstr_w(token
) );