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"
104 WINE_DEFAULT_DEBUG_CHANNEL(menubuilder
);
106 #define in_desktop_dir(csidl) ((csidl)==CSIDL_DESKTOPDIRECTORY || \
107 (csidl)==CSIDL_COMMON_DESKTOPDIRECTORY)
108 #define in_startmenu(csidl) ((csidl)==CSIDL_STARTMENU || \
109 (csidl)==CSIDL_COMMON_STARTMENU)
111 /* link file formats */
113 #include "pshpack1.h"
132 GRPICONDIRENTRY idEntries
[1];
170 static char *xdg_config_dir
;
171 static char *xdg_data_dir
;
172 static char *xdg_desktop_dir
;
174 static WCHAR
* assoc_query(ASSOCSTR assocStr
, LPCWSTR name
, LPCWSTR extra
);
175 static char *extract_icon(LPCWSTR path
, int index
, const char *destFilename
, BOOL bWait
);
177 /* Icon extraction routines
179 * FIXME: should use PrivateExtractIcons and friends
180 * FIXME: should not use stdio
183 #define MASK(x,y) (pAND[(x) / 8 + (nHeight - (y) - 1) * nANDWidthBytes] & (1 << (7 - (x) % 8)))
185 /* PNG-specific code */
188 static void *libpng_handle
;
189 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
190 MAKE_FUNCPTR(png_create_info_struct
);
191 MAKE_FUNCPTR(png_create_write_struct
);
192 MAKE_FUNCPTR(png_destroy_write_struct
);
193 MAKE_FUNCPTR(png_get_error_ptr
);
194 MAKE_FUNCPTR(png_init_io
);
195 MAKE_FUNCPTR(png_set_bgr
);
196 MAKE_FUNCPTR(png_set_error_fn
);
197 MAKE_FUNCPTR(png_set_text
);
198 MAKE_FUNCPTR(png_set_IHDR
);
199 MAKE_FUNCPTR(png_write_end
);
200 MAKE_FUNCPTR(png_write_info
);
201 MAKE_FUNCPTR(png_write_row
);
204 static void *load_libpng(void)
206 if ((libpng_handle
= wine_dlopen(SONAME_LIBPNG
, RTLD_NOW
, NULL
, 0)) != NULL
)
208 #define LOAD_FUNCPTR(f) \
209 if((p##f = wine_dlsym(libpng_handle, #f, NULL, 0)) == NULL) { \
210 libpng_handle = NULL; \
213 LOAD_FUNCPTR(png_create_info_struct
);
214 LOAD_FUNCPTR(png_create_write_struct
);
215 LOAD_FUNCPTR(png_destroy_write_struct
);
216 LOAD_FUNCPTR(png_get_error_ptr
);
217 LOAD_FUNCPTR(png_init_io
);
218 LOAD_FUNCPTR(png_set_bgr
);
219 LOAD_FUNCPTR(png_set_error_fn
);
220 LOAD_FUNCPTR(png_set_IHDR
);
221 LOAD_FUNCPTR(png_set_text
);
222 LOAD_FUNCPTR(png_write_end
);
223 LOAD_FUNCPTR(png_write_info
);
224 LOAD_FUNCPTR(png_write_row
);
227 return libpng_handle
;
230 static void user_error_fn(png_structp png_ptr
, png_const_charp error_message
)
234 /* This uses setjmp/longjmp just like the default. We can't use the
235 * default because there's no way to access the jmp buffer in the png_struct
236 * that works in 1.2 and 1.4 and allows us to dynamically load libpng. */
237 WINE_ERR("PNG error: %s\n", wine_dbgstr_an(error_message
, -1));
238 pjmpbuf
= ppng_get_error_ptr(png_ptr
);
239 longjmp(*pjmpbuf
, 1);
242 static void user_warning_fn(png_structp png_ptr
, png_const_charp warning_message
)
244 WINE_WARN("PNG warning: %s\n", wine_dbgstr_an(warning_message
, -1));
247 static BOOL
SaveTrueColorIconResAsPNG(const BITMAPINFO
*pIcon
, const char *png_filename
, LPCWSTR commentW
)
249 static const char comment_key
[] = "Created from";
254 int nXORWidthBytes
, nANDWidthBytes
, color_type
= 0, i
, j
;
255 BYTE
*row
, *copy
= NULL
;
256 const BYTE
*pXOR
, *pAND
= NULL
;
257 int nWidth
= pIcon
->bmiHeader
.biWidth
;
258 int nHeight
= pIcon
->bmiHeader
.biHeight
;
259 int nBpp
= pIcon
->bmiHeader
.biBitCount
;
265 color_type
|= PNG_COLOR_MASK_ALPHA
;
268 color_type
|= PNG_COLOR_MASK_COLOR
;
274 if (!libpng_handle
&& !load_libpng())
276 WINE_WARN("Unable to load libpng\n");
280 if (!(fp
= fopen(png_filename
, "w")))
282 WINE_ERR("unable to open '%s' for writing: %s\n", png_filename
, strerror(errno
));
286 nXORWidthBytes
= 4 * ((nWidth
* nBpp
+ 31) / 32);
287 nANDWidthBytes
= 4 * ((nWidth
+ 31 ) / 32);
288 pXOR
= (const BYTE
*) pIcon
+ sizeof(BITMAPINFOHEADER
) + pIcon
->bmiHeader
.biClrUsed
* sizeof(RGBQUAD
);
289 if (nHeight
> nWidth
)
292 pAND
= pXOR
+ nHeight
* nXORWidthBytes
;
295 /* Apply mask if present */
300 /* copy bytes before modifying them */
301 copy
= HeapAlloc( GetProcessHeap(), 0, nHeight
* nXORWidthBytes
);
302 memcpy( copy
, pXOR
, nHeight
* nXORWidthBytes
);
305 /* image and mask are upside down reversed */
306 row
= copy
+ (nHeight
- 1) * nXORWidthBytes
;
308 /* top left corner */
309 bgColor
.rgbRed
= row
[0];
310 bgColor
.rgbGreen
= row
[1];
311 bgColor
.rgbBlue
= row
[2];
312 bgColor
.rgbReserved
= 0;
314 for (i
= 0; i
< nHeight
; i
++, row
-= nXORWidthBytes
)
315 for (j
= 0; j
< nWidth
; j
++, row
+= nBpp
>> 3)
318 RGBQUAD
*pixel
= (RGBQUAD
*)row
;
319 pixel
->rgbBlue
= bgColor
.rgbBlue
;
320 pixel
->rgbGreen
= bgColor
.rgbGreen
;
321 pixel
->rgbRed
= bgColor
.rgbRed
;
323 pixel
->rgbReserved
= bgColor
.rgbReserved
;
329 if (!(png_ptr
= ppng_create_write_struct(PNG_LIBPNG_VER_STRING
, NULL
, NULL
, NULL
)) ||
330 !(info_ptr
= ppng_create_info_struct(png_ptr
)))
335 /* All future errors jump here */
338 ppng_set_error_fn(png_ptr
, &jmpbuf
, user_error_fn
, user_warning_fn
);
340 ppng_init_io(png_ptr
, fp
);
341 ppng_set_IHDR(png_ptr
, info_ptr
, nWidth
, nHeight
, 8,
344 PNG_COMPRESSION_TYPE_DEFAULT
,
345 PNG_FILTER_TYPE_DEFAULT
);
348 comment
.compression
= PNG_TEXT_COMPRESSION_NONE
;
349 comment
.key
= (png_charp
)comment_key
;
350 i
= WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, NULL
, 0, NULL
, NULL
);
351 comment
.text
= HeapAlloc(GetProcessHeap(), 0, i
);
352 WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, comment
.text
, i
, NULL
, NULL
);
353 comment
.text_length
= i
- 1;
354 ppng_set_text(png_ptr
, info_ptr
, &comment
, 1);
357 ppng_write_info(png_ptr
, info_ptr
);
358 ppng_set_bgr(png_ptr
);
359 for (i
= nHeight
- 1; i
>= 0 ; i
--)
360 ppng_write_row(png_ptr
, (png_bytep
)pXOR
+ nXORWidthBytes
* i
);
361 ppng_write_end(png_ptr
, info_ptr
);
363 ppng_destroy_write_struct(&png_ptr
, &info_ptr
);
364 if (png_ptr
) ppng_destroy_write_struct(&png_ptr
, NULL
);
366 HeapFree(GetProcessHeap(), 0, copy
);
367 HeapFree(GetProcessHeap(), 0, comment
.text
);
371 if (png_ptr
) ppng_destroy_write_struct(&png_ptr
, NULL
);
373 unlink(png_filename
);
374 HeapFree(GetProcessHeap(), 0, copy
);
375 HeapFree(GetProcessHeap(), 0, comment
.text
);
379 static BOOL
SavePalettedIconResAsPNG(const BITMAPINFO
*pIcon
, const char *png_filename
, LPCWSTR commentW
)
381 static const char comment_key
[] = "Created from";
382 FILE *pngFile
= NULL
;
395 unsigned char *row
= NULL
;
400 if (!((pIcon
->bmiHeader
.biBitCount
== 4) || (pIcon
->bmiHeader
.biBitCount
== 8)))
402 WINE_FIXME("Unsupported color depth %d-bit\n", pIcon
->bmiHeader
.biBitCount
);
406 if (!(pngFile
= fopen(png_filename
, "w")))
408 WINE_TRACE("Unable to open '%s' for writing: %s\n", png_filename
, strerror(errno
));
412 nHeight
= pIcon
->bmiHeader
.biHeight
/ 2;
413 nXORWidthBytes
= 4 * ((pIcon
->bmiHeader
.biWidth
* pIcon
->bmiHeader
.biBitCount
/ 32)
414 + ((pIcon
->bmiHeader
.biWidth
* pIcon
->bmiHeader
.biBitCount
% 32) > 0));
415 nANDWidthBytes
= 4 * ((pIcon
->bmiHeader
.biWidth
/ 32)
416 + ((pIcon
->bmiHeader
.biWidth
% 32) > 0));
417 b8BitColors
= pIcon
->bmiHeader
.biBitCount
== 8;
418 nColors
= pIcon
->bmiHeader
.biClrUsed
? pIcon
->bmiHeader
.biClrUsed
419 : 1 << pIcon
->bmiHeader
.biBitCount
;
420 pXOR
= (const BYTE
*) pIcon
+ sizeof (BITMAPINFOHEADER
) + (nColors
* sizeof (RGBQUAD
));
421 pAND
= pXOR
+ nHeight
* nXORWidthBytes
;
423 row
= HeapAlloc(GetProcessHeap(), 0, 4 * pIcon
->bmiHeader
.biWidth
);
426 WINE_ERR("out of memory\n");
430 if (!libpng_handle
&& !load_libpng())
432 WINE_WARN("Unable to load libpng\n");
436 if (!(png_ptr
= ppng_create_write_struct(PNG_LIBPNG_VER_STRING
, NULL
, NULL
, NULL
)) ||
437 !(info_ptr
= ppng_create_info_struct(png_ptr
)))
442 /* All future errors jump here */
445 ppng_set_error_fn(png_ptr
, &jmpbuf
, user_error_fn
, user_warning_fn
);
447 ppng_init_io(png_ptr
, pngFile
);
448 ppng_set_IHDR(png_ptr
, info_ptr
, pIcon
->bmiHeader
.biWidth
, nHeight
, 8,
449 PNG_COLOR_TYPE_RGB_ALPHA
,
451 PNG_COMPRESSION_TYPE_DEFAULT
,
452 PNG_FILTER_TYPE_DEFAULT
);
455 comment
.compression
= PNG_TEXT_COMPRESSION_NONE
;
456 comment
.key
= (png_charp
)comment_key
;
457 i
= WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, NULL
, 0, NULL
, NULL
);
458 comment
.text
= HeapAlloc(GetProcessHeap(), 0, i
);
459 if (comment
.text
== NULL
)
461 WINE_ERR("out of memory\n");
464 WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, comment
.text
, i
, NULL
, NULL
);
465 comment
.text_length
= i
- 1;
466 ppng_set_text(png_ptr
, info_ptr
, &comment
, 1);
468 ppng_write_info(png_ptr
, info_ptr
);
469 for (i
= 0; i
< nHeight
; i
++)
471 unsigned char *p
= row
;
472 for (j
= 0; j
< pIcon
->bmiHeader
.biWidth
; j
++)
483 #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)
484 *p
++ = pIcon
->bmiColors
[COLOR(j
,i
)].rgbRed
;
485 *p
++ = pIcon
->bmiColors
[COLOR(j
,i
)].rgbGreen
;
486 *p
++ = pIcon
->bmiColors
[COLOR(j
,i
)].rgbBlue
;
491 ppng_write_row(png_ptr
, (png_bytep
)row
);
493 ppng_write_end(png_ptr
, info_ptr
);
497 ppng_destroy_write_struct(&png_ptr
, &info_ptr
);
500 HeapFree(GetProcessHeap(), 0, comment
.text
);
501 HeapFree(GetProcessHeap(), 0, row
);
505 static BOOL
SaveIconResAsPNG(const BITMAPINFO
*pIcon
, const char *png_filename
, LPCWSTR commentW
)
507 switch (pIcon
->bmiHeader
.biBitCount
)
511 return SavePalettedIconResAsPNG(pIcon
, png_filename
, commentW
);
514 return SaveTrueColorIconResAsPNG(pIcon
, png_filename
, commentW
);
516 WINE_FIXME("unsupported bpp %d, please report\n", pIcon
->bmiHeader
.biBitCount
);
520 #endif /* SONAME_LIBPNG */
522 static BOOL
SaveIconResAsXPM(const BITMAPINFO
*pIcon
, const char *szXPMFileName
, LPCWSTR commentW
)
532 BOOL aColorUsed
[256] = {0};
537 if (!((pIcon
->bmiHeader
.biBitCount
== 4) || (pIcon
->bmiHeader
.biBitCount
== 8)))
539 WINE_FIXME("Unsupported color depth %d-bit\n", pIcon
->bmiHeader
.biBitCount
);
543 if (!(fXPMFile
= fopen(szXPMFileName
, "w")))
545 WINE_TRACE("unable to open '%s' for writing: %s\n", szXPMFileName
, strerror(errno
));
549 i
= WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, NULL
, 0, NULL
, NULL
);
550 comment
= HeapAlloc(GetProcessHeap(), 0, i
);
551 WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, comment
, i
, NULL
, NULL
);
553 nHeight
= pIcon
->bmiHeader
.biHeight
/ 2;
554 nXORWidthBytes
= 4 * ((pIcon
->bmiHeader
.biWidth
* pIcon
->bmiHeader
.biBitCount
/ 32)
555 + ((pIcon
->bmiHeader
.biWidth
* pIcon
->bmiHeader
.biBitCount
% 32) > 0));
556 nANDWidthBytes
= 4 * ((pIcon
->bmiHeader
.biWidth
/ 32)
557 + ((pIcon
->bmiHeader
.biWidth
% 32) > 0));
558 b8BitColors
= pIcon
->bmiHeader
.biBitCount
== 8;
559 nColors
= pIcon
->bmiHeader
.biClrUsed
? pIcon
->bmiHeader
.biClrUsed
560 : 1 << pIcon
->bmiHeader
.biBitCount
;
561 pXOR
= (const BYTE
*) pIcon
+ sizeof (BITMAPINFOHEADER
) + (nColors
* sizeof (RGBQUAD
));
562 pAND
= pXOR
+ nHeight
* nXORWidthBytes
;
564 #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)
566 for (i
= 0; i
< nHeight
; i
++) {
567 for (j
= 0; j
< pIcon
->bmiHeader
.biWidth
; j
++) {
568 if (!aColorUsed
[COLOR(j
,i
)] && !MASK(j
,i
))
570 aColorUsed
[COLOR(j
,i
)] = TRUE
;
576 if (fprintf(fXPMFile
, "/* XPM */\n/* %s */\nstatic char *icon[] = {\n", comment
) <= 0)
578 if (fprintf(fXPMFile
, "\"%d %d %d %d\",\n",
579 (int) pIcon
->bmiHeader
.biWidth
, nHeight
, nColorsUsed
+ 1, 2) <=0)
582 for (i
= 0; i
< nColors
; i
++) {
584 if (fprintf(fXPMFile
, "\"%.2X c #%.2X%.2X%.2X\",\n", i
, pIcon
->bmiColors
[i
].rgbRed
,
585 pIcon
->bmiColors
[i
].rgbGreen
, pIcon
->bmiColors
[i
].rgbBlue
) <= 0)
588 if (fprintf(fXPMFile
, "\" c None\"") <= 0)
591 for (i
= 0; i
< nHeight
; i
++)
593 if (fprintf(fXPMFile
, ",\n\"") <= 0)
595 for (j
= 0; j
< pIcon
->bmiHeader
.biWidth
; j
++)
599 if (fprintf(fXPMFile
, " ") <= 0)
603 if (fprintf(fXPMFile
, "%.2X", COLOR(j
,i
)) <= 0)
606 if (fprintf(fXPMFile
, "\"") <= 0)
609 if (fprintf(fXPMFile
, "};\n") <= 0)
615 HeapFree(GetProcessHeap(), 0, comment
);
620 HeapFree(GetProcessHeap(), 0, comment
);
622 unlink( szXPMFileName
);
626 static BOOL CALLBACK
EnumResNameProc(HMODULE hModule
, LPCWSTR lpszType
, LPWSTR lpszName
, LONG_PTR lParam
)
628 ENUMRESSTRUCT
*sEnumRes
= (ENUMRESSTRUCT
*) lParam
;
630 if (!sEnumRes
->nIndex
--)
632 *sEnumRes
->pResInfo
= FindResourceW(hModule
, lpszName
, (LPCWSTR
)RT_GROUP_ICON
);
639 static BOOL
extract_icon32(LPCWSTR szFileName
, int nIndex
, char *szXPMFileName
)
643 LPCWSTR lpName
= NULL
;
645 GRPICONDIR
*pIconDir
;
647 ENUMRESSTRUCT sEnumRes
;
653 hModule
= LoadLibraryExW(szFileName
, 0, LOAD_LIBRARY_AS_DATAFILE
);
656 WINE_WARN("LoadLibraryExW (%s) failed, error %d\n",
657 wine_dbgstr_w(szFileName
), GetLastError());
663 hResInfo
= FindResourceW(hModule
, MAKEINTRESOURCEW(-nIndex
), (LPCWSTR
)RT_GROUP_ICON
);
664 WINE_TRACE("FindResourceW (%s) called, return %p, error %d\n",
665 wine_dbgstr_w(szFileName
), hResInfo
, GetLastError());
670 sEnumRes
.pResInfo
= &hResInfo
;
671 sEnumRes
.nIndex
= nIndex
;
672 if (!EnumResourceNamesW(hModule
, (LPCWSTR
)RT_GROUP_ICON
,
673 EnumResNameProc
, (LONG_PTR
)&sEnumRes
) &&
674 sEnumRes
.nIndex
!= -1)
676 WINE_TRACE("EnumResourceNamesW failed, error %d\n", GetLastError());
682 if ((hResData
= LoadResource(hModule
, hResInfo
)))
684 if ((pIconDir
= LockResource(hResData
)))
686 lpName
= MAKEINTRESOURCEW(pIconDir
->idEntries
[0].nID
); /* default to first entry */
687 for (i
= 0; i
< pIconDir
->idCount
; i
++)
689 #ifndef SONAME_LIBPNG
690 if (pIconDir
->idEntries
[i
].wBitCount
!= 4 && pIconDir
->idEntries
[i
].wBitCount
!= 8)
693 if (pIconDir
->idEntries
[i
].wBitCount
>= nMaxBits
)
695 if ((pIconDir
->idEntries
[i
].bHeight
* pIconDir
->idEntries
[i
].bWidth
) >= nMax
)
697 lpName
= MAKEINTRESOURCEW(pIconDir
->idEntries
[i
].nID
);
698 nMax
= pIconDir
->idEntries
[i
].bHeight
* pIconDir
->idEntries
[i
].bWidth
;
699 nMaxBits
= pIconDir
->idEntries
[i
].wBitCount
;
705 FreeResource(hResData
);
710 WINE_WARN("found no icon\n");
711 FreeLibrary(hModule
);
715 if ((hResInfo
= FindResourceW(hModule
, lpName
, (LPCWSTR
)RT_ICON
)))
717 if ((hResData
= LoadResource(hModule
, hResInfo
)))
719 if ((pIcon
= LockResource(hResData
)))
722 if (SaveIconResAsPNG(pIcon
, szXPMFileName
, szFileName
))
727 memcpy(szXPMFileName
+ strlen(szXPMFileName
) - 3, "xpm", 3);
728 if (SaveIconResAsXPM(pIcon
, szXPMFileName
, szFileName
))
733 FreeResource(hResData
);
737 FreeLibrary(hModule
);
741 static BOOL
ExtractFromEXEDLL(LPCWSTR szFileName
, int nIndex
, char *szXPMFileName
)
743 if (!extract_icon32(szFileName
, nIndex
, szXPMFileName
) /*&&
744 !extract_icon16(szFileName, szXPMFileName)*/)
749 static int ExtractFromICO(LPCWSTR szFileName
, char *szXPMFileName
)
751 FILE *fICOFile
= NULL
;
753 ICONDIRENTRY
*pIconDirEntry
= NULL
;
754 int nMax
= 0, nMaxBits
= 0;
758 char *filename
= NULL
;
760 filename
= wine_get_unix_file_name(szFileName
);
761 if (!(fICOFile
= fopen(filename
, "r")))
763 WINE_TRACE("unable to open '%s' for reading: %s\n", filename
, strerror(errno
));
767 if (fread(&iconDir
, sizeof (ICONDIR
), 1, fICOFile
) != 1 ||
768 (iconDir
.idReserved
!= 0) || (iconDir
.idType
!= 1))
770 WINE_WARN("Invalid ico file format\n");
774 if ((pIconDirEntry
= HeapAlloc(GetProcessHeap(), 0, iconDir
.idCount
* sizeof (ICONDIRENTRY
))) == NULL
)
776 if (fread(pIconDirEntry
, sizeof (ICONDIRENTRY
), iconDir
.idCount
, fICOFile
) != iconDir
.idCount
)
779 for (i
= 0; i
< iconDir
.idCount
; i
++)
781 WINE_TRACE("[%d]: %d x %d @ %d\n", i
, pIconDirEntry
[i
].bWidth
, pIconDirEntry
[i
].bHeight
, pIconDirEntry
[i
].wBitCount
);
782 if (pIconDirEntry
[i
].wBitCount
>= nMaxBits
&&
783 (pIconDirEntry
[i
].bHeight
* pIconDirEntry
[i
].bWidth
) >= nMax
)
786 nMax
= pIconDirEntry
[i
].bHeight
* pIconDirEntry
[i
].bWidth
;
787 nMaxBits
= pIconDirEntry
[i
].wBitCount
;
790 WINE_TRACE("Selected: %d\n", nIndex
);
792 if ((pIcon
= HeapAlloc(GetProcessHeap(), 0, pIconDirEntry
[nIndex
].dwBytesInRes
)) == NULL
)
794 if (fseek(fICOFile
, pIconDirEntry
[nIndex
].dwImageOffset
, SEEK_SET
))
796 if (fread(pIcon
, pIconDirEntry
[nIndex
].dwBytesInRes
, 1, fICOFile
) != 1)
800 /* Prefer PNG over XPM */
802 if (!SaveIconResAsPNG(pIcon
, szXPMFileName
, szFileName
))
805 memcpy(szXPMFileName
+ strlen(szXPMFileName
) - 3, "xpm", 3);
806 if (!SaveIconResAsXPM(pIcon
, szXPMFileName
, szFileName
))
810 HeapFree(GetProcessHeap(), 0, pIcon
);
811 HeapFree(GetProcessHeap(), 0, pIconDirEntry
);
813 HeapFree(GetProcessHeap(), 0, filename
);
817 HeapFree(GetProcessHeap(), 0, pIcon
);
818 HeapFree(GetProcessHeap(), 0, pIconDirEntry
);
819 if (fICOFile
) fclose(fICOFile
);
820 HeapFree(GetProcessHeap(), 0, filename
);
824 static int ExtractFromFileType(LPCWSTR szFileName
, char *szXPMFileName
)
830 WCHAR
*executable
= NULL
;
832 char *output_path
= NULL
;
834 extension
= strrchrW(szFileName
, '.');
835 if (extension
== NULL
)
838 icon
= assoc_query(ASSOCSTR_DEFAULTICON
, extension
, NULL
);
841 comma
= strrchrW(icon
, ',');
845 index
= atoiW(comma
+ 1);
847 output_path
= extract_icon(icon
, index
, NULL
, FALSE
);
848 WINE_TRACE("defaulticon %s -> icon %s\n", wine_dbgstr_w(icon
), wine_dbgstr_a(output_path
));
852 executable
= assoc_query(ASSOCSTR_EXECUTABLE
, extension
, NULL
);
854 output_path
= extract_icon(executable
, 0, NULL
, FALSE
);
855 WINE_TRACE("executable %s -> icon %s\n", wine_dbgstr_w(executable
), wine_dbgstr_a(output_path
));
858 ret
= (rename(output_path
, szXPMFileName
) == 0);
861 HeapFree(GetProcessHeap(), 0, icon
);
862 HeapFree(GetProcessHeap(), 0, executable
);
863 HeapFree(GetProcessHeap(), 0, output_path
);
867 static BOOL
create_default_icon( char *filename
)
869 static const WCHAR user32W
[] = {'u','s','e','r','3','2',0};
871 return extract_icon32( user32W
, -(INT_PTR
)IDI_WINLOGO
, filename
);
874 static unsigned short crc16(const char* string
)
876 unsigned short crc
= 0;
879 for (i
= 0; string
[i
] != 0; i
++)
882 for (j
= 0; j
< 8; c
>>= 1, j
++)
884 xor_poly
= (c
^ crc
) & 1;
893 static char *strdupA( const char *str
)
897 if (!str
) return NULL
;
898 if ((ret
= HeapAlloc( GetProcessHeap(), 0, strlen(str
) + 1 ))) strcpy( ret
, str
);
902 static char* heap_printf(const char *format
, ...)
909 va_start(args
, format
);
912 buffer
= HeapAlloc(GetProcessHeap(), 0, size
);
915 n
= vsnprintf(buffer
, size
, format
, args
);
922 HeapFree(GetProcessHeap(), 0, buffer
);
925 if (!buffer
) return NULL
;
926 ret
= HeapReAlloc(GetProcessHeap(), 0, buffer
, strlen(buffer
) + 1 );
927 if (!ret
) ret
= buffer
;
931 static void write_xml_text(FILE *file
, const char *text
)
934 for (i
= 0; text
[i
]; i
++)
937 fputs("&", file
);
938 else if (text
[i
] == '<')
940 else if (text
[i
] == '>')
942 else if (text
[i
] == '\'')
943 fputs("'", file
);
944 else if (text
[i
] == '"')
945 fputs(""", file
);
947 fputc(text
[i
], file
);
951 static BOOL
create_directories(char *directory
)
956 for (i
= 0; directory
[i
]; i
++)
958 if (i
> 0 && directory
[i
] == '/')
961 mkdir(directory
, 0777);
965 if (mkdir(directory
, 0777) && errno
!= EEXIST
)
971 static char* wchars_to_utf8_chars(LPCWSTR string
)
974 INT size
= WideCharToMultiByte(CP_UTF8
, 0, string
, -1, NULL
, 0, NULL
, NULL
);
975 ret
= HeapAlloc(GetProcessHeap(), 0, size
);
977 WideCharToMultiByte(CP_UTF8
, 0, string
, -1, ret
, size
, NULL
, NULL
);
981 static char* wchars_to_unix_chars(LPCWSTR string
)
984 INT size
= WideCharToMultiByte(CP_UNIXCP
, 0, string
, -1, NULL
, 0, NULL
, NULL
);
985 ret
= HeapAlloc(GetProcessHeap(), 0, size
);
987 WideCharToMultiByte(CP_UNIXCP
, 0, string
, -1, ret
, size
, NULL
, NULL
);
991 static WCHAR
* utf8_chars_to_wchars(LPCSTR string
)
994 INT size
= MultiByteToWideChar(CP_UTF8
, 0, string
, -1, NULL
, 0);
995 ret
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
997 MultiByteToWideChar(CP_UTF8
, 0, string
, -1, ret
, size
);
1001 /* extract an icon from an exe or icon file; helper for IPersistFile_fnSave */
1002 static char *extract_icon( LPCWSTR path
, int index
, const char *destFilename
, BOOL bWait
)
1005 char *iconsdir
= NULL
, *ico_path
= NULL
, *ico_name
, *xpm_path
= NULL
;
1009 /* Where should we save the icon? */
1010 WINE_TRACE("path=[%s] index=%d\n", wine_dbgstr_w(path
), index
);
1011 iconsdir
= heap_printf("%s/icons", xdg_data_dir
);
1014 if (mkdir(iconsdir
, 0777) && errno
!= EEXIST
)
1016 WINE_WARN("couldn't make icons directory %s\n", wine_dbgstr_a(iconsdir
));
1022 WINE_TRACE("no icon created\n");
1026 /* Determine the icon base name */
1027 n
= WideCharToMultiByte(CP_UNIXCP
, 0, path
, -1, NULL
, 0, NULL
, NULL
);
1028 ico_path
= HeapAlloc(GetProcessHeap(), 0, n
);
1029 WideCharToMultiByte(CP_UNIXCP
, 0, path
, -1, ico_path
, n
, NULL
, NULL
);
1030 s
=ico_name
=ico_path
;
1032 if (*s
=='/' || *s
=='\\') {
1040 if (*ico_name
=='\\') *ico_name
++='\0';
1041 s
=strrchr(ico_name
,'.');
1044 /* Compute the source-path hash */
1045 crc
=crc16(ico_path
);
1047 /* Try to treat the source file as an exe */
1049 xpm_path
=heap_printf("%s/%s.png",iconsdir
,destFilename
);
1051 xpm_path
=heap_printf("%s/%04x_%s.%d.png",iconsdir
,crc
,ico_name
,index
);
1052 if (xpm_path
== NULL
)
1054 WINE_ERR("could not extract icon %s, out of memory\n", wine_dbgstr_a(ico_name
));
1058 if (ExtractFromEXEDLL( path
, index
, xpm_path
))
1061 /* Must be something else, ignore the index in that case */
1063 sprintf(xpm_path
,"%s/%s.png",iconsdir
,destFilename
);
1065 sprintf(xpm_path
,"%s/%04x_%s.png",iconsdir
,crc
,ico_name
);
1066 if (ExtractFromICO( path
, xpm_path
))
1068 if (ExtractFromFileType( path
, xpm_path
))
1070 if (!bWait
&& create_default_icon( xpm_path
))
1073 HeapFree( GetProcessHeap(), 0, xpm_path
);
1077 HeapFree(GetProcessHeap(), 0, iconsdir
);
1078 HeapFree(GetProcessHeap(), 0, ico_path
);
1082 static HKEY
open_menus_reg_key(void)
1084 static const WCHAR Software_Wine_FileOpenAssociationsW
[] = {
1085 'S','o','f','t','w','a','r','e','\\','W','i','n','e','\\','M','e','n','u','F','i','l','e','s',0};
1088 ret
= RegCreateKeyW(HKEY_CURRENT_USER
, Software_Wine_FileOpenAssociationsW
, &assocKey
);
1089 if (ret
== ERROR_SUCCESS
)
1095 static DWORD
register_menus_entry(const char *unix_file
, const char *windows_file
)
1098 WCHAR
*windows_fileW
;
1102 size
= MultiByteToWideChar(CP_UNIXCP
, 0, unix_file
, -1, NULL
, 0);
1103 unix_fileW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
1106 MultiByteToWideChar(CP_UNIXCP
, 0, unix_file
, -1, unix_fileW
, size
);
1107 size
= MultiByteToWideChar(CP_UNIXCP
, 0, windows_file
, -1, NULL
, 0);
1108 windows_fileW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
1112 MultiByteToWideChar(CP_UNIXCP
, 0, windows_file
, -1, windows_fileW
, size
);
1113 hkey
= open_menus_reg_key();
1116 ret
= RegSetValueExW(hkey
, unix_fileW
, 0, REG_SZ
, (const BYTE
*)windows_fileW
,
1117 (strlenW(windows_fileW
) + 1) * sizeof(WCHAR
));
1121 ret
= GetLastError();
1122 HeapFree(GetProcessHeap(), 0, windows_fileW
);
1125 ret
= ERROR_NOT_ENOUGH_MEMORY
;
1126 HeapFree(GetProcessHeap(), 0, unix_fileW
);
1129 ret
= ERROR_NOT_ENOUGH_MEMORY
;
1133 static BOOL
write_desktop_entry(const char *unix_link
, const char *location
, const char *linkname
,
1134 const char *path
, const char *args
, const char *descr
,
1135 const char *workdir
, const char *icon
)
1139 WINE_TRACE("(%s,%s,%s,%s,%s,%s,%s,%s)\n", wine_dbgstr_a(unix_link
), wine_dbgstr_a(location
),
1140 wine_dbgstr_a(linkname
), wine_dbgstr_a(path
), wine_dbgstr_a(args
),
1141 wine_dbgstr_a(descr
), wine_dbgstr_a(workdir
), wine_dbgstr_a(icon
));
1143 file
= fopen(location
, "w");
1147 fprintf(file
, "[Desktop Entry]\n");
1148 fprintf(file
, "Name=%s\n", linkname
);
1149 fprintf(file
, "Exec=env WINEPREFIX=\"%s\" wine %s %s\n",
1150 wine_get_config_dir(), path
, args
);
1151 fprintf(file
, "Type=Application\n");
1152 fprintf(file
, "StartupNotify=true\n");
1153 if (descr
&& lstrlenA(descr
))
1154 fprintf(file
, "Comment=%s\n", descr
);
1155 if (workdir
&& lstrlenA(workdir
))
1156 fprintf(file
, "Path=%s\n", workdir
);
1157 if (icon
&& lstrlenA(icon
))
1158 fprintf(file
, "Icon=%s\n", icon
);
1164 DWORD ret
= register_menus_entry(location
, unix_link
);
1165 if (ret
!= ERROR_SUCCESS
)
1172 static BOOL
write_directory_entry(const char *directory
, const char *location
)
1176 WINE_TRACE("(%s,%s)\n", wine_dbgstr_a(directory
), wine_dbgstr_a(location
));
1178 file
= fopen(location
, "w");
1182 fprintf(file
, "[Desktop Entry]\n");
1183 fprintf(file
, "Type=Directory\n");
1184 if (strcmp(directory
, "wine") == 0)
1186 fprintf(file
, "Name=Wine\n");
1187 fprintf(file
, "Icon=wine\n");
1191 fprintf(file
, "Name=%s\n", directory
);
1192 fprintf(file
, "Icon=folder\n");
1199 static BOOL
write_menu_file(const char *unix_link
, const char *filename
)
1202 FILE *tempfile
= NULL
;
1205 char *menuPath
= NULL
;
1210 WINE_TRACE("(%s)\n", wine_dbgstr_a(filename
));
1214 tempfilename
= heap_printf("%s/wine-menu-XXXXXX", xdg_config_dir
);
1217 int tempfd
= mkstemps(tempfilename
, 0);
1220 tempfile
= fdopen(tempfd
, "w");
1226 else if (errno
== EEXIST
)
1228 HeapFree(GetProcessHeap(), 0, tempfilename
);
1231 HeapFree(GetProcessHeap(), 0, tempfilename
);
1236 fprintf(tempfile
, "<!DOCTYPE Menu PUBLIC \"-//freedesktop//DTD Menu 1.0//EN\"\n");
1237 fprintf(tempfile
, "\"http://www.freedesktop.org/standards/menu-spec/menu-1.0.dtd\">\n");
1238 fprintf(tempfile
, "<Menu>\n");
1239 fprintf(tempfile
, " <Name>Applications</Name>\n");
1241 name
= HeapAlloc(GetProcessHeap(), 0, lstrlenA(filename
) + 1);
1242 if (name
== NULL
) goto end
;
1244 for (i
= 0; filename
[i
]; i
++)
1246 name
[i
] = filename
[i
];
1247 if (filename
[i
] == '/')
1249 char *dir_file_name
;
1252 fprintf(tempfile
, " <Menu>\n");
1253 fprintf(tempfile
, " <Name>%s", count
? "" : "wine-");
1254 write_xml_text(tempfile
, name
);
1255 fprintf(tempfile
, "</Name>\n");
1256 fprintf(tempfile
, " <Directory>%s", count
? "" : "wine-");
1257 write_xml_text(tempfile
, name
);
1258 fprintf(tempfile
, ".directory</Directory>\n");
1259 dir_file_name
= heap_printf("%s/desktop-directories/%s%s.directory",
1260 xdg_data_dir
, count
? "" : "wine-", name
);
1263 if (stat(dir_file_name
, &st
) != 0 && errno
== ENOENT
)
1264 write_directory_entry(lastEntry
, dir_file_name
);
1265 HeapFree(GetProcessHeap(), 0, dir_file_name
);
1268 lastEntry
= &name
[i
+1];
1274 fprintf(tempfile
, " <Include>\n");
1275 fprintf(tempfile
, " <Filename>");
1276 write_xml_text(tempfile
, name
);
1277 fprintf(tempfile
, "</Filename>\n");
1278 fprintf(tempfile
, " </Include>\n");
1279 for (i
= 0; i
< count
; i
++)
1280 fprintf(tempfile
, " </Menu>\n");
1281 fprintf(tempfile
, "</Menu>\n");
1283 menuPath
= heap_printf("%s/%s", xdg_config_dir
, name
);
1284 if (menuPath
== NULL
) goto end
;
1285 strcpy(menuPath
+ strlen(menuPath
) - strlen(".desktop"), ".menu");
1292 ret
= (rename(tempfilename
, menuPath
) == 0);
1293 if (!ret
&& tempfilename
)
1294 remove(tempfilename
);
1295 HeapFree(GetProcessHeap(), 0, tempfilename
);
1297 register_menus_entry(menuPath
, unix_link
);
1298 HeapFree(GetProcessHeap(), 0, name
);
1299 HeapFree(GetProcessHeap(), 0, menuPath
);
1303 static BOOL
write_menu_entry(const char *unix_link
, const char *link
, const char *path
, const char *args
,
1304 const char *descr
, const char *workdir
, const char *icon
)
1306 const char *linkname
;
1307 char *desktopPath
= NULL
;
1309 char *filename
= NULL
;
1312 WINE_TRACE("(%s, %s, %s, %s, %s, %s, %s)\n", wine_dbgstr_a(unix_link
), wine_dbgstr_a(link
),
1313 wine_dbgstr_a(path
), wine_dbgstr_a(args
), wine_dbgstr_a(descr
),
1314 wine_dbgstr_a(workdir
), wine_dbgstr_a(icon
));
1316 linkname
= strrchr(link
, '/');
1317 if (linkname
== NULL
)
1322 desktopPath
= heap_printf("%s/applications/wine/%s.desktop", xdg_data_dir
, link
);
1325 WINE_WARN("out of memory creating menu entry\n");
1329 desktopDir
= strrchr(desktopPath
, '/');
1331 if (!create_directories(desktopPath
))
1333 WINE_WARN("couldn't make parent directories for %s\n", wine_dbgstr_a(desktopPath
));
1338 if (!write_desktop_entry(unix_link
, desktopPath
, linkname
, path
, args
, descr
, workdir
, icon
))
1340 WINE_WARN("couldn't make desktop entry %s\n", wine_dbgstr_a(desktopPath
));
1345 filename
= heap_printf("wine/%s.desktop", link
);
1346 if (!filename
|| !write_menu_file(unix_link
, filename
))
1348 WINE_WARN("couldn't make menu file %s\n", wine_dbgstr_a(filename
));
1353 HeapFree(GetProcessHeap(), 0, desktopPath
);
1354 HeapFree(GetProcessHeap(), 0, filename
);
1358 /* This escapes reserved characters in .desktop files' Exec keys. */
1359 static LPSTR
escape(LPCWSTR arg
)
1362 WCHAR
*escaped_string
;
1365 escaped_string
= HeapAlloc(GetProcessHeap(), 0, (4 * strlenW(arg
) + 1) * sizeof(WCHAR
));
1366 if (escaped_string
== NULL
) return NULL
;
1367 for (i
= j
= 0; arg
[i
]; i
++)
1372 escaped_string
[j
++] = '\\';
1373 escaped_string
[j
++] = '\\';
1374 escaped_string
[j
++] = '\\';
1375 escaped_string
[j
++] = '\\';
1395 escaped_string
[j
++] = '\\';
1396 escaped_string
[j
++] = '\\';
1399 escaped_string
[j
++] = arg
[i
];
1403 escaped_string
[j
] = 0;
1405 utf8_string
= wchars_to_utf8_chars(escaped_string
);
1406 if (utf8_string
== NULL
)
1408 WINE_ERR("out of memory\n");
1413 HeapFree(GetProcessHeap(), 0, escaped_string
);
1417 /* Return a heap-allocated copy of the unix format difference between the two
1418 * Windows-format paths.
1419 * locn is the owning location
1420 * link is within locn
1422 static char *relative_path( LPCWSTR link
, LPCWSTR locn
)
1424 char *unix_locn
, *unix_link
;
1425 char *relative
= NULL
;
1427 unix_locn
= wine_get_unix_file_name(locn
);
1428 unix_link
= wine_get_unix_file_name(link
);
1429 if (unix_locn
&& unix_link
)
1431 size_t len_unix_locn
, len_unix_link
;
1432 len_unix_locn
= strlen (unix_locn
);
1433 len_unix_link
= strlen (unix_link
);
1434 if (len_unix_locn
< len_unix_link
&& memcmp (unix_locn
, unix_link
, len_unix_locn
) == 0 && unix_link
[len_unix_locn
] == '/')
1437 char *p
= strrchr (unix_link
+ len_unix_locn
, '/');
1438 p
= strrchr (p
, '.');
1442 len_unix_link
= p
- unix_link
;
1444 len_rel
= len_unix_link
- len_unix_locn
;
1445 relative
= HeapAlloc(GetProcessHeap(), 0, len_rel
);
1448 memcpy (relative
, unix_link
+ len_unix_locn
+ 1, len_rel
);
1453 WINE_WARN("Could not separate the relative link path of %s in %s\n", wine_dbgstr_w(link
), wine_dbgstr_w(locn
));
1454 HeapFree(GetProcessHeap(), 0, unix_locn
);
1455 HeapFree(GetProcessHeap(), 0, unix_link
);
1459 /***********************************************************************
1463 * returns TRUE if successful
1464 * *loc will contain CS_DESKTOPDIRECTORY, CS_STARTMENU, CS_STARTUP etc.
1465 * *relative will contain the address of a heap-allocated copy of the portion
1466 * of the filename that is within the specified location, in unix form
1468 static BOOL
GetLinkLocation( LPCWSTR linkfile
, DWORD
*loc
, char **relative
)
1470 WCHAR filename
[MAX_PATH
], shortfilename
[MAX_PATH
], buffer
[MAX_PATH
];
1471 DWORD len
, i
, r
, filelen
;
1472 const DWORD locations
[] = {
1473 CSIDL_STARTUP
, CSIDL_DESKTOPDIRECTORY
, CSIDL_STARTMENU
,
1474 CSIDL_COMMON_STARTUP
, CSIDL_COMMON_DESKTOPDIRECTORY
,
1475 CSIDL_COMMON_STARTMENU
};
1477 WINE_TRACE("%s\n", wine_dbgstr_w(linkfile
));
1478 filelen
=GetFullPathNameW( linkfile
, MAX_PATH
, shortfilename
, NULL
);
1479 if (filelen
==0 || filelen
>MAX_PATH
)
1482 WINE_TRACE("%s\n", wine_dbgstr_w(shortfilename
));
1484 /* the CSLU Toolkit uses a short path name when creating .lnk files;
1485 * expand or our hardcoded list won't match.
1487 filelen
=GetLongPathNameW(shortfilename
, filename
, MAX_PATH
);
1488 if (filelen
==0 || filelen
>MAX_PATH
)
1491 WINE_TRACE("%s\n", wine_dbgstr_w(filename
));
1493 for( i
=0; i
<sizeof(locations
)/sizeof(locations
[0]); i
++ )
1495 if (!SHGetSpecialFolderPathW( 0, buffer
, locations
[i
], FALSE
))
1498 len
= lstrlenW(buffer
);
1499 if (len
>= MAX_PATH
)
1500 continue; /* We've just trashed memory! Hopefully we are OK */
1502 if (len
> filelen
|| filename
[len
]!='\\')
1504 /* do a lstrcmpinW */
1506 r
= lstrcmpiW( filename
, buffer
);
1507 filename
[len
] = '\\';
1511 /* return the remainder of the string and link type */
1512 *loc
= locations
[i
];
1513 *relative
= relative_path (filename
, buffer
);
1514 return (*relative
!= NULL
);
1520 /* gets the target path directly or through MSI */
1521 static HRESULT
get_cmdline( IShellLinkW
*sl
, LPWSTR szPath
, DWORD pathSize
,
1522 LPWSTR szArgs
, DWORD argsSize
)
1524 IShellLinkDataList
*dl
= NULL
;
1525 EXP_DARWIN_LINK
*dar
= NULL
;
1531 hr
= IShellLinkW_GetPath( sl
, szPath
, pathSize
, NULL
, SLGP_RAWPATH
);
1532 if (hr
== S_OK
&& szPath
[0])
1534 IShellLinkW_GetArguments( sl
, szArgs
, argsSize
);
1538 hr
= IShellLinkW_QueryInterface( sl
, &IID_IShellLinkDataList
, (LPVOID
*) &dl
);
1542 hr
= IShellLinkDataList_CopyDataBlock( dl
, EXP_DARWIN_ID_SIG
, (LPVOID
*) &dar
);
1549 hr
= CommandLineFromMsiDescriptor( dar
->szwDarwinID
, NULL
, &cmdSize
);
1550 if (hr
== ERROR_SUCCESS
)
1553 szCmdline
= HeapAlloc( GetProcessHeap(), 0, cmdSize
*sizeof(WCHAR
) );
1554 hr
= CommandLineFromMsiDescriptor( dar
->szwDarwinID
, szCmdline
, &cmdSize
);
1555 WINE_TRACE(" command : %s\n", wine_dbgstr_w(szCmdline
));
1556 if (hr
== ERROR_SUCCESS
)
1559 int bcount
, in_quotes
;
1561 /* Extract the application path */
1568 if ((*s
==0x0009 || *s
==0x0020) && !in_quotes
)
1570 /* skip the remaining spaces */
1573 } while (*s
==0x0009 || *s
==0x0020);
1576 else if (*s
==0x005c)
1582 else if (*s
==0x0022)
1585 if ((bcount
& 1)==0)
1587 /* Preceded by an even number of '\', this is
1588 * half that number of '\', plus a quote which
1592 in_quotes
=!in_quotes
;
1597 /* Preceded by an odd number of '\', this is
1598 * half that number of '\' followed by a '"'
1608 /* a regular character */
1612 if ((d
-szPath
) == pathSize
)
1614 /* Keep processing the path till we get to the
1615 * arguments, but 'stand still'
1620 /* Close the application path */
1623 lstrcpynW(szArgs
, s
, argsSize
);
1625 HeapFree( GetProcessHeap(), 0, szCmdline
);
1630 IShellLinkDataList_Release( dl
);
1634 static WCHAR
* assoc_query(ASSOCSTR assocStr
, LPCWSTR name
, LPCWSTR extra
)
1637 WCHAR
*value
= NULL
;
1639 hr
= AssocQueryStringW(0, assocStr
, name
, extra
, NULL
, &size
);
1642 value
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
1645 hr
= AssocQueryStringW(0, assocStr
, name
, extra
, value
, &size
);
1648 HeapFree(GetProcessHeap(), 0, value
);
1656 static char *slashes_to_minuses(const char *string
)
1659 char *ret
= HeapAlloc(GetProcessHeap(), 0, lstrlenA(string
) + 1);
1662 for (i
= 0; string
[i
]; i
++)
1664 if (string
[i
] == '/')
1675 static BOOL
next_line(FILE *file
, char **line
, int *size
)
1682 *line
= HeapAlloc(GetProcessHeap(), 0, *size
);
1684 while (*line
!= NULL
)
1686 if (fgets(&(*line
)[pos
], *size
- pos
, file
) == NULL
)
1688 HeapFree(GetProcessHeap(), 0, *line
);
1694 pos
= strlen(*line
);
1695 cr
= strchr(*line
, '\n');
1700 line2
= HeapReAlloc(GetProcessHeap(), 0, *line
, *size
);
1705 HeapFree(GetProcessHeap(), 0, *line
);
1718 static BOOL
add_mimes(const char *xdg_data_dir
, struct list
*mime_types
)
1720 char *globs_filename
= NULL
;
1722 globs_filename
= heap_printf("%s/mime/globs", xdg_data_dir
);
1725 FILE *globs_file
= fopen(globs_filename
, "r");
1726 if (globs_file
) /* doesn't have to exist */
1730 while (ret
&& (ret
= next_line(globs_file
, &line
, &size
)) && line
)
1733 struct xdg_mime_type
*mime_type_entry
= NULL
;
1734 if (line
[0] != '#' && (pos
= strchr(line
, ':')))
1736 mime_type_entry
= HeapAlloc(GetProcessHeap(), 0, sizeof(struct xdg_mime_type
));
1737 if (mime_type_entry
)
1740 mime_type_entry
->mimeType
= strdupA(line
);
1741 mime_type_entry
->glob
= strdupA(pos
+ 1);
1742 if (mime_type_entry
->mimeType
&& mime_type_entry
->glob
)
1743 list_add_tail(mime_types
, &mime_type_entry
->entry
);
1746 HeapFree(GetProcessHeap(), 0, mime_type_entry
->mimeType
);
1747 HeapFree(GetProcessHeap(), 0, mime_type_entry
->glob
);
1748 HeapFree(GetProcessHeap(), 0, mime_type_entry
);
1756 HeapFree(GetProcessHeap(), 0, line
);
1759 HeapFree(GetProcessHeap(), 0, globs_filename
);
1766 static void free_native_mime_types(struct list
*native_mime_types
)
1768 struct xdg_mime_type
*mime_type_entry
, *mime_type_entry2
;
1770 LIST_FOR_EACH_ENTRY_SAFE(mime_type_entry
, mime_type_entry2
, native_mime_types
, struct xdg_mime_type
, entry
)
1772 list_remove(&mime_type_entry
->entry
);
1773 HeapFree(GetProcessHeap(), 0, mime_type_entry
->glob
);
1774 HeapFree(GetProcessHeap(), 0, mime_type_entry
->mimeType
);
1775 HeapFree(GetProcessHeap(), 0, mime_type_entry
);
1777 HeapFree(GetProcessHeap(), 0, native_mime_types
);
1780 static BOOL
build_native_mime_types(const char *xdg_data_home
, struct list
**mime_types
)
1782 char *xdg_data_dirs
;
1787 xdg_data_dirs
= getenv("XDG_DATA_DIRS");
1788 if (xdg_data_dirs
== NULL
)
1789 xdg_data_dirs
= heap_printf("/usr/local/share/:/usr/share/");
1791 xdg_data_dirs
= strdupA(xdg_data_dirs
);
1795 *mime_types
= HeapAlloc(GetProcessHeap(), 0, sizeof(struct list
));
1801 list_init(*mime_types
);
1802 ret
= add_mimes(xdg_data_home
, *mime_types
);
1805 for (begin
= xdg_data_dirs
; (end
= strchr(begin
, ':')); begin
= end
+ 1)
1808 ret
= add_mimes(begin
, *mime_types
);
1814 ret
= add_mimes(begin
, *mime_types
);
1819 HeapFree(GetProcessHeap(), 0, xdg_data_dirs
);
1823 if (!ret
&& *mime_types
)
1825 free_native_mime_types(*mime_types
);
1831 static BOOL
match_glob(struct list
*native_mime_types
, const char *extension
,
1835 struct xdg_mime_type
*mime_type_entry
;
1836 int matchLength
= 0;
1840 LIST_FOR_EACH_ENTRY(mime_type_entry
, native_mime_types
, struct xdg_mime_type
, entry
)
1842 if (fnmatch(mime_type_entry
->glob
, extension
, 0) == 0)
1844 if (*match
== NULL
|| matchLength
< strlen(mime_type_entry
->glob
))
1846 *match
= mime_type_entry
->mimeType
;
1847 matchLength
= strlen(mime_type_entry
->glob
);
1854 *match
= strdupA(*match
);
1864 static BOOL
freedesktop_mime_type_for_extension(struct list
*native_mime_types
,
1865 const char *extensionA
,
1869 WCHAR
*lower_extensionW
;
1871 BOOL ret
= match_glob(native_mime_types
, extensionA
, mime_type
);
1872 if (ret
== FALSE
|| *mime_type
!= NULL
)
1874 len
= strlenW(extensionW
);
1875 lower_extensionW
= HeapAlloc(GetProcessHeap(), 0, (len
+ 1)*sizeof(WCHAR
));
1876 if (lower_extensionW
)
1878 char *lower_extensionA
;
1879 memcpy(lower_extensionW
, extensionW
, (len
+ 1)*sizeof(WCHAR
));
1880 strlwrW(lower_extensionW
);
1881 lower_extensionA
= wchars_to_utf8_chars(lower_extensionW
);
1882 if (lower_extensionA
)
1884 ret
= match_glob(native_mime_types
, lower_extensionA
, mime_type
);
1885 HeapFree(GetProcessHeap(), 0, lower_extensionA
);
1890 WINE_FIXME("out of memory\n");
1892 HeapFree(GetProcessHeap(), 0, lower_extensionW
);
1897 WINE_FIXME("out of memory\n");
1902 static WCHAR
* reg_get_valW(HKEY key
, LPCWSTR subkey
, LPCWSTR name
)
1905 if (RegGetValueW(key
, subkey
, name
, RRF_RT_REG_SZ
, NULL
, NULL
, &size
) == ERROR_SUCCESS
)
1907 WCHAR
*ret
= HeapAlloc(GetProcessHeap(), 0, size
);
1910 if (RegGetValueW(key
, subkey
, name
, RRF_RT_REG_SZ
, NULL
, ret
, &size
) == ERROR_SUCCESS
)
1913 HeapFree(GetProcessHeap(), 0, ret
);
1918 static CHAR
* reg_get_val_utf8(HKEY key
, LPCWSTR subkey
, LPCWSTR name
)
1920 WCHAR
*valW
= reg_get_valW(key
, subkey
, name
);
1923 char *val
= wchars_to_utf8_chars(valW
);
1924 HeapFree(GetProcessHeap(), 0, valW
);
1930 static HKEY
open_associations_reg_key(void)
1932 static const WCHAR Software_Wine_FileOpenAssociationsW
[] = {
1933 '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};
1935 if (RegCreateKeyW(HKEY_CURRENT_USER
, Software_Wine_FileOpenAssociationsW
, &assocKey
) == ERROR_SUCCESS
)
1940 static BOOL
has_association_changed(LPCWSTR extensionW
, LPCSTR mimeType
, LPCWSTR progId
, LPCSTR appName
, LPCWSTR docName
)
1942 static const WCHAR ProgIDW
[] = {'P','r','o','g','I','D',0};
1943 static const WCHAR DocNameW
[] = {'D','o','c','N','a','m','e',0};
1944 static const WCHAR MimeTypeW
[] = {'M','i','m','e','T','y','p','e',0};
1945 static const WCHAR AppNameW
[] = {'A','p','p','N','a','m','e',0};
1949 if ((assocKey
= open_associations_reg_key()))
1956 valueA
= reg_get_val_utf8(assocKey
, extensionW
, MimeTypeW
);
1957 if (!valueA
|| lstrcmpA(valueA
, mimeType
))
1959 HeapFree(GetProcessHeap(), 0, valueA
);
1961 value
= reg_get_valW(assocKey
, extensionW
, ProgIDW
);
1962 if (!value
|| strcmpW(value
, progId
))
1964 HeapFree(GetProcessHeap(), 0, value
);
1966 valueA
= reg_get_val_utf8(assocKey
, extensionW
, AppNameW
);
1967 if (!valueA
|| lstrcmpA(valueA
, appName
))
1969 HeapFree(GetProcessHeap(), 0, valueA
);
1971 value
= reg_get_valW(assocKey
, extensionW
, DocNameW
);
1972 if (docName
&& (!value
|| strcmpW(value
, docName
)))
1974 HeapFree(GetProcessHeap(), 0, value
);
1976 RegCloseKey(assocKey
);
1980 WINE_ERR("error opening associations registry key\n");
1986 static void update_association(LPCWSTR extension
, LPCSTR mimeType
, LPCWSTR progId
, LPCSTR appName
, LPCWSTR docName
, LPCSTR desktopFile
)
1988 static const WCHAR ProgIDW
[] = {'P','r','o','g','I','D',0};
1989 static const WCHAR DocNameW
[] = {'D','o','c','N','a','m','e',0};
1990 static const WCHAR MimeTypeW
[] = {'M','i','m','e','T','y','p','e',0};
1991 static const WCHAR AppNameW
[] = {'A','p','p','N','a','m','e',0};
1992 static const WCHAR DesktopFileW
[] = {'D','e','s','k','t','o','p','F','i','l','e',0};
1993 HKEY assocKey
= NULL
;
1995 WCHAR
*mimeTypeW
= NULL
;
1996 WCHAR
*appNameW
= NULL
;
1997 WCHAR
*desktopFileW
= NULL
;
1999 assocKey
= open_associations_reg_key();
2000 if (assocKey
== NULL
)
2002 WINE_ERR("could not open file associations key\n");
2006 if (RegCreateKeyW(assocKey
, extension
, &subkey
) != ERROR_SUCCESS
)
2008 WINE_ERR("could not create extension subkey\n");
2012 mimeTypeW
= utf8_chars_to_wchars(mimeType
);
2013 if (mimeTypeW
== NULL
)
2015 WINE_ERR("out of memory\n");
2019 appNameW
= utf8_chars_to_wchars(appName
);
2020 if (appNameW
== NULL
)
2022 WINE_ERR("out of memory\n");
2026 desktopFileW
= utf8_chars_to_wchars(desktopFile
);
2027 if (desktopFileW
== NULL
)
2029 WINE_ERR("out of memory\n");
2033 RegSetValueExW(subkey
, MimeTypeW
, 0, REG_SZ
, (const BYTE
*) mimeTypeW
, (lstrlenW(mimeTypeW
) + 1) * sizeof(WCHAR
));
2034 RegSetValueExW(subkey
, ProgIDW
, 0, REG_SZ
, (const BYTE
*) progId
, (lstrlenW(progId
) + 1) * sizeof(WCHAR
));
2035 RegSetValueExW(subkey
, AppNameW
, 0, REG_SZ
, (const BYTE
*) appNameW
, (lstrlenW(appNameW
) + 1) * sizeof(WCHAR
));
2037 RegSetValueExW(subkey
, DocNameW
, 0, REG_SZ
, (const BYTE
*) docName
, (lstrlenW(docName
) + 1) * sizeof(WCHAR
));
2038 RegSetValueExW(subkey
, DesktopFileW
, 0, REG_SZ
, (const BYTE
*) desktopFileW
, (lstrlenW(desktopFileW
) + 1) * sizeof(WCHAR
));
2041 RegCloseKey(assocKey
);
2042 RegCloseKey(subkey
);
2043 HeapFree(GetProcessHeap(), 0, mimeTypeW
);
2044 HeapFree(GetProcessHeap(), 0, appNameW
);
2045 HeapFree(GetProcessHeap(), 0, desktopFileW
);
2048 static BOOL
cleanup_associations(void)
2050 static const WCHAR openW
[] = {'o','p','e','n',0};
2051 static const WCHAR DesktopFileW
[] = {'D','e','s','k','t','o','p','F','i','l','e',0};
2053 BOOL hasChanged
= FALSE
;
2054 if ((assocKey
= open_associations_reg_key()))
2058 for (i
= 0; !done
; i
++)
2060 WCHAR
*extensionW
= NULL
;
2066 HeapFree(GetProcessHeap(), 0, extensionW
);
2067 extensionW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
2068 if (extensionW
== NULL
)
2070 WINE_ERR("out of memory\n");
2071 ret
= ERROR_OUTOFMEMORY
;
2074 ret
= RegEnumKeyExW(assocKey
, i
, extensionW
, &size
, NULL
, NULL
, NULL
, NULL
);
2076 } while (ret
== ERROR_MORE_DATA
);
2078 if (ret
== ERROR_SUCCESS
)
2081 command
= assoc_query(ASSOCSTR_COMMAND
, extensionW
, openW
);
2082 if (command
== NULL
)
2084 char *desktopFile
= reg_get_val_utf8(assocKey
, extensionW
, DesktopFileW
);
2087 WINE_TRACE("removing file type association for %s\n", wine_dbgstr_w(extensionW
));
2088 remove(desktopFile
);
2090 RegDeleteKeyW(assocKey
, extensionW
);
2092 HeapFree(GetProcessHeap(), 0, desktopFile
);
2094 HeapFree(GetProcessHeap(), 0, command
);
2098 if (ret
!= ERROR_NO_MORE_ITEMS
)
2099 WINE_ERR("error %d while reading registry\n", ret
);
2102 HeapFree(GetProcessHeap(), 0, extensionW
);
2104 RegCloseKey(assocKey
);
2107 WINE_ERR("could not open file associations key\n");
2111 static BOOL
write_freedesktop_mime_type_entry(const char *packages_dir
, const char *dot_extension
,
2112 const char *mime_type
, const char *comment
)
2117 WINE_TRACE("writing MIME type %s, extension=%s, comment=%s\n", wine_dbgstr_a(mime_type
),
2118 wine_dbgstr_a(dot_extension
), wine_dbgstr_a(comment
));
2120 filename
= heap_printf("%s/x-wine-extension-%s.xml", packages_dir
, &dot_extension
[1]);
2123 FILE *packageFile
= fopen(filename
, "w");
2126 fprintf(packageFile
, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
2127 fprintf(packageFile
, "<mime-info xmlns=\"http://www.freedesktop.org/standards/shared-mime-info\">\n");
2128 fprintf(packageFile
, " <mime-type type=\"");
2129 write_xml_text(packageFile
, mime_type
);
2130 fprintf(packageFile
, "\">\n");
2131 fprintf(packageFile
, " <glob pattern=\"*");
2132 write_xml_text(packageFile
, dot_extension
);
2133 fprintf(packageFile
, "\"/>\n");
2136 fprintf(packageFile
, " <comment>");
2137 write_xml_text(packageFile
, comment
);
2138 fprintf(packageFile
, "</comment>\n");
2140 fprintf(packageFile
, " </mime-type>\n");
2141 fprintf(packageFile
, "</mime-info>\n");
2143 fclose(packageFile
);
2146 WINE_ERR("error writing file %s\n", filename
);
2147 HeapFree(GetProcessHeap(), 0, filename
);
2150 WINE_ERR("out of memory\n");
2154 static BOOL
is_extension_blacklisted(LPCWSTR extension
)
2156 /* These are managed through external tools like wine.desktop, to evade malware created file type associations */
2157 static const WCHAR comW
[] = {'.','c','o','m',0};
2158 static const WCHAR exeW
[] = {'.','e','x','e',0};
2159 static const WCHAR msiW
[] = {'.','m','s','i',0};
2161 if (!strcmpiW(extension
, comW
) ||
2162 !strcmpiW(extension
, exeW
) ||
2163 !strcmpiW(extension
, msiW
))
2168 static const char* get_special_mime_type(LPCWSTR extension
)
2170 static const WCHAR lnkW
[] = {'.','l','n','k',0};
2171 if (!strcmpiW(extension
, lnkW
))
2172 return "application/x-ms-shortcut";
2176 static BOOL
write_freedesktop_association_entry(const char *desktopPath
, const char *dot_extension
,
2177 const char *friendlyAppName
, const char *mimeType
,
2183 WINE_TRACE("writing association for file type %s, friendlyAppName=%s, MIME type %s, progID=%s, to file %s\n",
2184 wine_dbgstr_a(dot_extension
), wine_dbgstr_a(friendlyAppName
), wine_dbgstr_a(mimeType
),
2185 wine_dbgstr_a(progId
), wine_dbgstr_a(desktopPath
));
2187 desktop
= fopen(desktopPath
, "w");
2190 fprintf(desktop
, "[Desktop Entry]\n");
2191 fprintf(desktop
, "Type=Application\n");
2192 fprintf(desktop
, "Name=%s\n", friendlyAppName
);
2193 fprintf(desktop
, "MimeType=%s\n", mimeType
);
2194 fprintf(desktop
, "Exec=wine start /ProgIDOpen %s %%f\n", progId
);
2195 fprintf(desktop
, "NoDisplay=true\n");
2196 fprintf(desktop
, "StartupNotify=true\n");
2201 WINE_ERR("error writing association file %s\n", wine_dbgstr_a(desktopPath
));
2205 static BOOL
generate_associations(const char *xdg_data_home
, const char *packages_dir
, const char *applications_dir
)
2207 static const WCHAR openW
[] = {'o','p','e','n',0};
2208 struct list
*nativeMimeTypes
= NULL
;
2211 BOOL hasChanged
= FALSE
;
2213 if (!build_native_mime_types(xdg_data_home
, &nativeMimeTypes
))
2215 WINE_ERR("could not build native MIME types\n");
2221 WCHAR
*extensionW
= NULL
;
2226 HeapFree(GetProcessHeap(), 0, extensionW
);
2227 extensionW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
2228 if (extensionW
== NULL
)
2230 WINE_ERR("out of memory\n");
2231 ret
= ERROR_OUTOFMEMORY
;
2234 ret
= RegEnumKeyExW(HKEY_CLASSES_ROOT
, i
, extensionW
, &size
, NULL
, NULL
, NULL
, NULL
);
2236 } while (ret
== ERROR_MORE_DATA
);
2238 if (ret
== ERROR_SUCCESS
&& extensionW
[0] == '.' && !is_extension_blacklisted(extensionW
))
2240 char *extensionA
= NULL
;
2241 WCHAR
*commandW
= NULL
;
2242 WCHAR
*friendlyDocNameW
= NULL
;
2243 char *friendlyDocNameA
= NULL
;
2244 WCHAR
*iconW
= NULL
;
2246 WCHAR
*contentTypeW
= NULL
;
2247 char *mimeTypeA
= NULL
;
2248 WCHAR
*friendlyAppNameW
= NULL
;
2249 char *friendlyAppNameA
= NULL
;
2250 WCHAR
*progIdW
= NULL
;
2251 char *progIdA
= NULL
;
2253 extensionA
= wchars_to_utf8_chars(extensionW
);
2254 if (extensionA
== NULL
)
2256 WINE_ERR("out of memory\n");
2260 friendlyDocNameW
= assoc_query(ASSOCSTR_FRIENDLYDOCNAME
, extensionW
, NULL
);
2261 if (friendlyDocNameW
)
2263 friendlyDocNameA
= wchars_to_utf8_chars(friendlyDocNameW
);
2264 if (friendlyDocNameA
== NULL
)
2266 WINE_ERR("out of memory\n");
2271 iconW
= assoc_query(ASSOCSTR_DEFAULTICON
, extensionW
, NULL
);
2273 contentTypeW
= assoc_query(ASSOCSTR_CONTENTTYPE
, extensionW
, NULL
);
2275 strlwrW(contentTypeW
);
2277 if (!freedesktop_mime_type_for_extension(nativeMimeTypes
, extensionA
, extensionW
, &mimeTypeA
))
2280 if (mimeTypeA
== NULL
)
2282 if (contentTypeW
!= NULL
&& strchrW(contentTypeW
, '/'))
2283 mimeTypeA
= wchars_to_utf8_chars(contentTypeW
);
2284 else if ((get_special_mime_type(extensionW
)))
2285 mimeTypeA
= strdupA(get_special_mime_type(extensionW
));
2287 mimeTypeA
= heap_printf("application/x-wine-extension-%s", &extensionA
[1]);
2289 if (mimeTypeA
!= NULL
)
2291 /* Gnome seems to ignore the <icon> tag in MIME packages,
2292 * and the default name is more intuitive anyway.
2296 char *flattened_mime
= slashes_to_minuses(mimeTypeA
);
2300 WCHAR
*comma
= strrchrW(iconW
, ',');
2304 index
= atoiW(comma
+ 1);
2306 iconA
= extract_icon(iconW
, index
, flattened_mime
, FALSE
);
2307 HeapFree(GetProcessHeap(), 0, flattened_mime
);
2311 write_freedesktop_mime_type_entry(packages_dir
, extensionA
, mimeTypeA
, friendlyDocNameA
);
2316 WINE_FIXME("out of memory\n");
2321 commandW
= assoc_query(ASSOCSTR_COMMAND
, extensionW
, openW
);
2322 if (commandW
== NULL
)
2323 /* no command => no application is associated */
2326 friendlyAppNameW
= assoc_query(ASSOCSTR_FRIENDLYAPPNAME
, extensionW
, NULL
);
2327 if (friendlyAppNameW
)
2329 friendlyAppNameA
= wchars_to_utf8_chars(friendlyAppNameW
);
2330 if (friendlyAppNameA
== NULL
)
2332 WINE_ERR("out of memory\n");
2338 friendlyAppNameA
= heap_printf("A Wine application");
2339 if (friendlyAppNameA
== NULL
)
2341 WINE_ERR("out of memory\n");
2346 progIdW
= reg_get_valW(HKEY_CLASSES_ROOT
, extensionW
, NULL
);
2349 progIdA
= escape(progIdW
);
2350 if (progIdA
== NULL
)
2352 WINE_ERR("out of memory\n");
2357 goto end
; /* no progID => not a file type association */
2359 if (has_association_changed(extensionW
, mimeTypeA
, progIdW
, friendlyAppNameA
, friendlyDocNameW
))
2361 char *desktopPath
= heap_printf("%s/wine-extension-%s.desktop", applications_dir
, &extensionA
[1]);
2364 if (write_freedesktop_association_entry(desktopPath
, extensionA
, friendlyAppNameA
, mimeTypeA
, progIdA
))
2367 update_association(extensionW
, mimeTypeA
, progIdW
, friendlyAppNameA
, friendlyDocNameW
, desktopPath
);
2369 HeapFree(GetProcessHeap(), 0, desktopPath
);
2374 HeapFree(GetProcessHeap(), 0, extensionA
);
2375 HeapFree(GetProcessHeap(), 0, commandW
);
2376 HeapFree(GetProcessHeap(), 0, friendlyDocNameW
);
2377 HeapFree(GetProcessHeap(), 0, friendlyDocNameA
);
2378 HeapFree(GetProcessHeap(), 0, iconW
);
2379 HeapFree(GetProcessHeap(), 0, iconA
);
2380 HeapFree(GetProcessHeap(), 0, contentTypeW
);
2381 HeapFree(GetProcessHeap(), 0, mimeTypeA
);
2382 HeapFree(GetProcessHeap(), 0, friendlyAppNameW
);
2383 HeapFree(GetProcessHeap(), 0, friendlyAppNameA
);
2384 HeapFree(GetProcessHeap(), 0, progIdW
);
2385 HeapFree(GetProcessHeap(), 0, progIdA
);
2387 HeapFree(GetProcessHeap(), 0, extensionW
);
2388 if (ret
!= ERROR_SUCCESS
)
2392 free_native_mime_types(nativeMimeTypes
);
2396 static char *get_start_exe_path(void)
2398 static const WCHAR startW
[] = {'\\','c','o','m','m','a','n','d',
2399 '\\','s','t','a','r','t','.','e','x','e',0};
2400 WCHAR start_path
[MAX_PATH
];
2401 GetWindowsDirectoryW(start_path
, MAX_PATH
);
2402 lstrcatW(start_path
, startW
);
2403 return escape(start_path
);
2406 static BOOL
InvokeShellLinker( IShellLinkW
*sl
, LPCWSTR link
, BOOL bWait
)
2408 static const WCHAR startW
[] = {'\\','c','o','m','m','a','n','d',
2409 '\\','s','t','a','r','t','.','e','x','e',0};
2410 char *link_name
= NULL
, *icon_name
= NULL
, *work_dir
= NULL
;
2411 char *escaped_path
= NULL
, *escaped_args
= NULL
, *description
= NULL
;
2412 WCHAR szTmp
[INFOTIPSIZE
];
2413 WCHAR szDescription
[INFOTIPSIZE
], szPath
[MAX_PATH
], szWorkDir
[MAX_PATH
];
2414 WCHAR szArgs
[INFOTIPSIZE
], szIconPath
[MAX_PATH
];
2415 int iIconId
= 0, r
= -1;
2418 char *unix_link
= NULL
;
2419 char *start_path
= NULL
;
2423 WINE_ERR("Link name is null\n");
2427 if( !GetLinkLocation( link
, &csidl
, &link_name
) )
2429 WINE_WARN("Unknown link location %s. Ignoring.\n",wine_dbgstr_w(link
));
2432 if (!in_desktop_dir(csidl
) && !in_startmenu(csidl
))
2434 WINE_WARN("Not under desktop or start menu. Ignoring.\n");
2437 WINE_TRACE("Link : %s\n", wine_dbgstr_a(link_name
));
2440 IShellLinkW_GetWorkingDirectory( sl
, szTmp
, MAX_PATH
);
2441 ExpandEnvironmentStringsW(szTmp
, szWorkDir
, MAX_PATH
);
2442 WINE_TRACE("workdir : %s\n", wine_dbgstr_w(szWorkDir
));
2445 IShellLinkW_GetDescription( sl
, szTmp
, INFOTIPSIZE
);
2446 ExpandEnvironmentStringsW(szTmp
, szDescription
, INFOTIPSIZE
);
2447 WINE_TRACE("description: %s\n", wine_dbgstr_w(szDescription
));
2449 get_cmdline( sl
, szTmp
, MAX_PATH
, szArgs
, INFOTIPSIZE
);
2450 ExpandEnvironmentStringsW(szTmp
, szPath
, MAX_PATH
);
2451 WINE_TRACE("path : %s\n", wine_dbgstr_w(szPath
));
2452 WINE_TRACE("args : %s\n", wine_dbgstr_w(szArgs
));
2455 IShellLinkW_GetIconLocation( sl
, szTmp
, MAX_PATH
, &iIconId
);
2456 ExpandEnvironmentStringsW(szTmp
, szIconPath
, MAX_PATH
);
2457 WINE_TRACE("icon file : %s\n", wine_dbgstr_w(szIconPath
) );
2461 LPITEMIDLIST pidl
= NULL
;
2462 IShellLinkW_GetIDList( sl
, &pidl
);
2463 if( pidl
&& SHGetPathFromIDListW( pidl
, szPath
) )
2464 WINE_TRACE("pidl path : %s\n", wine_dbgstr_w(szPath
));
2467 /* extract the icon */
2469 icon_name
= extract_icon( szIconPath
, iIconId
, NULL
, bWait
);
2471 icon_name
= extract_icon( szPath
, iIconId
, NULL
, bWait
);
2473 /* fail - try once again after parent process exit */
2478 WINE_WARN("Unable to extract icon, deferring.\n");
2481 WINE_ERR("failed to extract icon from %s\n",
2482 wine_dbgstr_w( szIconPath
[0] ? szIconPath
: szPath
));
2485 unix_link
= wine_get_unix_file_name(link
);
2486 if (unix_link
== NULL
)
2488 WINE_WARN("couldn't find unix path of %s\n", wine_dbgstr_w(link
));
2492 /* check the path */
2495 static const WCHAR exeW
[] = {'.','e','x','e',0};
2498 /* check for .exe extension */
2499 if (!(p
= strrchrW( szPath
, '.' )) ||
2500 strchrW( p
, '\\' ) || strchrW( p
, '/' ) ||
2501 lstrcmpiW( p
, exeW
))
2503 /* Not .exe - use 'start.exe' to launch this file */
2504 p
= szArgs
+ lstrlenW(szPath
) + 2;
2508 memmove( p
+1, szArgs
, min( (lstrlenW(szArgs
) + 1) * sizeof(szArgs
[0]),
2509 sizeof(szArgs
) - (p
+ 1 - szArgs
) * sizeof(szArgs
[0]) ) );
2515 lstrcpyW(szArgs
+ 1, szPath
);
2518 GetWindowsDirectoryW(szPath
, MAX_PATH
);
2519 lstrcatW(szPath
, startW
);
2522 /* convert app working dir */
2524 work_dir
= wine_get_unix_file_name( szWorkDir
);
2528 /* if there's no path... try run the link itself */
2529 lstrcpynW(szArgs
, link
, MAX_PATH
);
2530 GetWindowsDirectoryW(szPath
, MAX_PATH
);
2531 lstrcatW(szPath
, startW
);
2534 /* escape the path and parameters */
2535 escaped_path
= escape(szPath
);
2536 escaped_args
= escape(szArgs
);
2537 description
= wchars_to_utf8_chars(szDescription
);
2538 if (escaped_path
== NULL
|| escaped_args
== NULL
|| description
== NULL
)
2540 WINE_ERR("out of memory allocating/escaping parameters\n");
2544 start_path
= get_start_exe_path();
2545 if (start_path
== NULL
)
2547 WINE_ERR("out of memory\n");
2551 /* building multiple menus concurrently has race conditions */
2552 hsem
= CreateSemaphoreA( NULL
, 1, 1, "winemenubuilder_semaphore");
2553 if( WAIT_OBJECT_0
!= MsgWaitForMultipleObjects( 1, &hsem
, FALSE
, INFINITE
, QS_ALLINPUT
) )
2555 WINE_ERR("failed wait for semaphore\n");
2559 if (in_desktop_dir(csidl
))
2562 const char *lastEntry
;
2563 lastEntry
= strrchr(link_name
, '/');
2564 if (lastEntry
== NULL
)
2565 lastEntry
= link_name
;
2568 location
= heap_printf("%s/%s.desktop", xdg_desktop_dir
, lastEntry
);
2571 r
= !write_desktop_entry(NULL
, location
, lastEntry
, escaped_path
, escaped_args
, description
, work_dir
, icon_name
);
2573 chmod(location
, 0755);
2574 HeapFree(GetProcessHeap(), 0, location
);
2579 WCHAR
*unix_linkW
= utf8_chars_to_wchars(unix_link
);
2582 char *escaped_lnk
= escape(unix_linkW
);
2585 char *menuarg
= heap_printf("/Unix %s", escaped_lnk
);
2588 r
= !write_menu_entry(unix_link
, link_name
, start_path
, menuarg
, description
, work_dir
, icon_name
);
2589 HeapFree(GetProcessHeap(), 0, menuarg
);
2591 HeapFree(GetProcessHeap(), 0, escaped_lnk
);
2593 HeapFree(GetProcessHeap(), 0, unix_linkW
);
2597 ReleaseSemaphore( hsem
, 1, NULL
);
2600 if (hsem
) CloseHandle( hsem
);
2601 HeapFree( GetProcessHeap(), 0, icon_name
);
2602 HeapFree( GetProcessHeap(), 0, work_dir
);
2603 HeapFree( GetProcessHeap(), 0, link_name
);
2604 HeapFree( GetProcessHeap(), 0, escaped_args
);
2605 HeapFree( GetProcessHeap(), 0, escaped_path
);
2606 HeapFree( GetProcessHeap(), 0, description
);
2607 HeapFree( GetProcessHeap(), 0, unix_link
);
2608 HeapFree( GetProcessHeap(), 0, start_path
);
2611 WINE_ERR("failed to build the menu\n" );
2616 static BOOL
InvokeShellLinkerForURL( IUniformResourceLocatorW
*url
, LPCWSTR link
, BOOL bWait
)
2618 char *link_name
= NULL
;
2621 char *escaped_urlPath
= NULL
;
2626 char *unix_link
= NULL
;
2630 WINE_ERR("Link name is null\n");
2634 if( !GetLinkLocation( link
, &csidl
, &link_name
) )
2636 WINE_WARN("Unknown link location %s. Ignoring.\n",wine_dbgstr_w(link
));
2639 if (!in_desktop_dir(csidl
) && !in_startmenu(csidl
))
2641 WINE_WARN("Not under desktop or start menu. Ignoring.\n");
2645 WINE_TRACE("Link : %s\n", wine_dbgstr_a(link_name
));
2647 hr
= url
->lpVtbl
->GetURL(url
, &urlPath
);
2653 WINE_TRACE("path : %s\n", wine_dbgstr_w(urlPath
));
2655 unix_link
= wine_get_unix_file_name(link
);
2656 if (unix_link
== NULL
)
2658 WINE_WARN("couldn't find unix path of %s\n", wine_dbgstr_w(link
));
2662 escaped_urlPath
= escape(urlPath
);
2663 if (escaped_urlPath
== NULL
)
2665 WINE_ERR("couldn't escape url, out of memory\n");
2669 hSem
= CreateSemaphoreA( NULL
, 1, 1, "winemenubuilder_semaphore");
2670 if( WAIT_OBJECT_0
!= MsgWaitForMultipleObjects( 1, &hSem
, FALSE
, INFINITE
, QS_ALLINPUT
) )
2672 WINE_ERR("failed wait for semaphore\n");
2675 if (in_desktop_dir(csidl
))
2678 const char *lastEntry
;
2679 lastEntry
= strrchr(link_name
, '/');
2680 if (lastEntry
== NULL
)
2681 lastEntry
= link_name
;
2684 location
= heap_printf("%s/%s.desktop", xdg_desktop_dir
, lastEntry
);
2687 r
= !write_desktop_entry(NULL
, location
, lastEntry
, "winebrowser", escaped_urlPath
, NULL
, NULL
, NULL
);
2689 chmod(location
, 0755);
2690 HeapFree(GetProcessHeap(), 0, location
);
2694 r
= !write_menu_entry(unix_link
, link_name
, "winebrowser", escaped_urlPath
, NULL
, NULL
, NULL
);
2696 ReleaseSemaphore(hSem
, 1, NULL
);
2701 HeapFree(GetProcessHeap(), 0, link_name
);
2702 CoTaskMemFree( urlPath
);
2703 HeapFree(GetProcessHeap(), 0, escaped_urlPath
);
2704 HeapFree(GetProcessHeap(), 0, unix_link
);
2708 static BOOL
WaitForParentProcess( void )
2710 PROCESSENTRY32 procentry
;
2711 HANDLE hsnapshot
= NULL
, hprocess
= NULL
;
2712 DWORD ourpid
= GetCurrentProcessId();
2713 BOOL ret
= FALSE
, rc
;
2715 WINE_TRACE("Waiting for parent process\n");
2716 if ((hsnapshot
= CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS
, 0 )) ==
2717 INVALID_HANDLE_VALUE
)
2719 WINE_ERR("CreateToolhelp32Snapshot failed, error %d\n", GetLastError());
2723 procentry
.dwSize
= sizeof(PROCESSENTRY32
);
2724 rc
= Process32First( hsnapshot
, &procentry
);
2727 if (procentry
.th32ProcessID
== ourpid
) break;
2728 rc
= Process32Next( hsnapshot
, &procentry
);
2732 WINE_WARN("Unable to find current process id %d when listing processes\n", ourpid
);
2736 if ((hprocess
= OpenProcess( SYNCHRONIZE
, FALSE
, procentry
.th32ParentProcessID
)) ==
2739 WINE_WARN("OpenProcess failed pid=%d, error %d\n", procentry
.th32ParentProcessID
,
2744 if (MsgWaitForMultipleObjects( 1, &hprocess
, FALSE
, INFINITE
, QS_ALLINPUT
) == WAIT_OBJECT_0
)
2747 WINE_ERR("Unable to wait for parent process, error %d\n", GetLastError());
2750 if (hprocess
) CloseHandle( hprocess
);
2751 if (hsnapshot
) CloseHandle( hsnapshot
);
2755 static BOOL
Process_Link( LPCWSTR linkname
, BOOL bWait
)
2760 WCHAR fullname
[MAX_PATH
];
2763 WINE_TRACE("%s, wait %d\n", wine_dbgstr_w(linkname
), bWait
);
2767 WINE_ERR("link name missing\n");
2771 len
=GetFullPathNameW( linkname
, MAX_PATH
, fullname
, NULL
);
2772 if (len
==0 || len
>MAX_PATH
)
2774 WINE_ERR("couldn't get full path of link file\n");
2778 r
= CoInitialize( NULL
);
2781 WINE_ERR("CoInitialize failed\n");
2785 r
= CoCreateInstance( &CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
2786 &IID_IShellLinkW
, (LPVOID
*) &sl
);
2789 WINE_ERR("No IID_IShellLink\n");
2793 r
= IShellLinkW_QueryInterface( sl
, &IID_IPersistFile
, (LPVOID
*) &pf
);
2796 WINE_ERR("No IID_IPersistFile\n");
2800 r
= IPersistFile_Load( pf
, fullname
, STGM_READ
);
2801 if( SUCCEEDED( r
) )
2803 /* If something fails (eg. Couldn't extract icon)
2804 * wait for parent process and try again
2806 if( ! InvokeShellLinker( sl
, fullname
, bWait
) && bWait
)
2808 WaitForParentProcess();
2809 InvokeShellLinker( sl
, fullname
, FALSE
);
2814 WINE_ERR("unable to load %s\n", wine_dbgstr_w(linkname
));
2817 IPersistFile_Release( pf
);
2818 IShellLinkW_Release( sl
);
2825 static BOOL
Process_URL( LPCWSTR urlname
, BOOL bWait
)
2827 IUniformResourceLocatorW
*url
;
2830 WCHAR fullname
[MAX_PATH
];
2833 WINE_TRACE("%s, wait %d\n", wine_dbgstr_w(urlname
), bWait
);
2837 WINE_ERR("URL name missing\n");
2841 len
=GetFullPathNameW( urlname
, MAX_PATH
, fullname
, NULL
);
2842 if (len
==0 || len
>MAX_PATH
)
2844 WINE_ERR("couldn't get full path of URL file\n");
2848 r
= CoInitialize( NULL
);
2851 WINE_ERR("CoInitialize failed\n");
2855 r
= CoCreateInstance( &CLSID_InternetShortcut
, NULL
, CLSCTX_INPROC_SERVER
,
2856 &IID_IUniformResourceLocatorW
, (LPVOID
*) &url
);
2859 WINE_ERR("No IID_IUniformResourceLocatorW\n");
2863 r
= url
->lpVtbl
->QueryInterface( url
, &IID_IPersistFile
, (LPVOID
*) &pf
);
2866 WINE_ERR("No IID_IPersistFile\n");
2869 r
= IPersistFile_Load( pf
, fullname
, STGM_READ
);
2870 if( SUCCEEDED( r
) )
2872 /* If something fails (eg. Couldn't extract icon)
2873 * wait for parent process and try again
2875 if( ! InvokeShellLinkerForURL( url
, fullname
, bWait
) && bWait
)
2877 WaitForParentProcess();
2878 InvokeShellLinkerForURL( url
, fullname
, FALSE
);
2882 IPersistFile_Release( pf
);
2883 url
->lpVtbl
->Release( url
);
2890 static void RefreshFileTypeAssociations(void)
2893 char *mime_dir
= NULL
;
2894 char *packages_dir
= NULL
;
2895 char *applications_dir
= NULL
;
2898 hSem
= CreateSemaphoreA( NULL
, 1, 1, "winemenubuilder_semaphore");
2899 if( WAIT_OBJECT_0
!= MsgWaitForMultipleObjects( 1, &hSem
, FALSE
, INFINITE
, QS_ALLINPUT
) )
2901 WINE_ERR("failed wait for semaphore\n");
2907 mime_dir
= heap_printf("%s/mime", xdg_data_dir
);
2908 if (mime_dir
== NULL
)
2910 WINE_ERR("out of memory\n");
2913 create_directories(mime_dir
);
2915 packages_dir
= heap_printf("%s/packages", mime_dir
);
2916 if (packages_dir
== NULL
)
2918 WINE_ERR("out of memory\n");
2921 create_directories(packages_dir
);
2923 applications_dir
= heap_printf("%s/applications", xdg_data_dir
);
2924 if (applications_dir
== NULL
)
2926 WINE_ERR("out of memory\n");
2929 create_directories(applications_dir
);
2931 hasChanged
= generate_associations(xdg_data_dir
, packages_dir
, applications_dir
);
2932 hasChanged
|= cleanup_associations();
2935 const char *argv
[3];
2937 argv
[0] = "update-mime-database";
2940 spawnvp( _P_NOWAIT
, argv
[0], argv
);
2942 argv
[0] = "update-desktop-database";
2943 argv
[1] = applications_dir
;
2944 spawnvp( _P_NOWAIT
, argv
[0], argv
);
2950 ReleaseSemaphore(hSem
, 1, NULL
);
2953 HeapFree(GetProcessHeap(), 0, mime_dir
);
2954 HeapFree(GetProcessHeap(), 0, packages_dir
);
2955 HeapFree(GetProcessHeap(), 0, applications_dir
);
2958 static void cleanup_menus(void)
2962 hkey
= open_menus_reg_key();
2966 LSTATUS lret
= ERROR_SUCCESS
;
2967 for (i
= 0; lret
== ERROR_SUCCESS
; )
2969 WCHAR
*value
= NULL
;
2971 DWORD valueSize
= 4096;
2972 DWORD dataSize
= 4096;
2975 lret
= ERROR_OUTOFMEMORY
;
2976 value
= HeapAlloc(GetProcessHeap(), 0, valueSize
* sizeof(WCHAR
));
2979 data
= HeapAlloc(GetProcessHeap(), 0, dataSize
* sizeof(WCHAR
));
2982 lret
= RegEnumValueW(hkey
, i
, value
, &valueSize
, NULL
, NULL
, (BYTE
*)data
, &dataSize
);
2983 if (lret
== ERROR_SUCCESS
|| lret
!= ERROR_MORE_DATA
)
2987 HeapFree(GetProcessHeap(), 0, value
);
2988 HeapFree(GetProcessHeap(), 0, data
);
2989 value
= data
= NULL
;
2991 if (lret
== ERROR_SUCCESS
)
2995 unix_file
= wchars_to_unix_chars(value
);
2996 windows_file
= wchars_to_unix_chars(data
);
2997 if (unix_file
!= NULL
&& windows_file
!= NULL
)
2999 struct stat filestats
;
3000 if (stat(windows_file
, &filestats
) < 0 && errno
== ENOENT
)
3002 WINE_TRACE("removing menu related file %s\n", unix_file
);
3004 RegDeleteValueW(hkey
, value
);
3011 WINE_ERR("out of memory enumerating menus\n");
3012 lret
= ERROR_OUTOFMEMORY
;
3014 HeapFree(GetProcessHeap(), 0, unix_file
);
3015 HeapFree(GetProcessHeap(), 0, windows_file
);
3017 else if (lret
!= ERROR_NO_MORE_ITEMS
)
3018 WINE_ERR("error %d reading registry\n", lret
);
3019 HeapFree(GetProcessHeap(), 0, value
);
3020 HeapFree(GetProcessHeap(), 0, data
);
3025 WINE_ERR("error opening registry key, menu cleanup failed\n");
3028 static WCHAR
*next_token( LPWSTR
*p
)
3030 LPWSTR token
= NULL
, t
= *p
;
3035 while( t
&& !token
)
3043 /* unquote the token */
3045 t
= strchrW( token
, '"' );
3054 t
= strchrW( token
, ' ' );
3064 static BOOL
init_xdg(void)
3066 WCHAR shellDesktopPath
[MAX_PATH
];
3067 HRESULT hr
= SHGetFolderPathW(NULL
, CSIDL_DESKTOP
, NULL
, SHGFP_TYPE_CURRENT
, shellDesktopPath
);
3069 xdg_desktop_dir
= wine_get_unix_file_name(shellDesktopPath
);
3070 if (xdg_desktop_dir
== NULL
)
3072 WINE_ERR("error looking up the desktop directory\n");
3076 if (getenv("XDG_CONFIG_HOME"))
3077 xdg_config_dir
= heap_printf("%s/menus/applications-merged", getenv("XDG_CONFIG_HOME"));
3079 xdg_config_dir
= heap_printf("%s/.config/menus/applications-merged", getenv("HOME"));
3082 create_directories(xdg_config_dir
);
3083 if (getenv("XDG_DATA_HOME"))
3084 xdg_data_dir
= strdupA(getenv("XDG_DATA_HOME"));
3086 xdg_data_dir
= heap_printf("%s/.local/share", getenv("HOME"));
3090 create_directories(xdg_data_dir
);
3091 buffer
= heap_printf("%s/desktop-directories", xdg_data_dir
);
3094 mkdir(buffer
, 0777);
3095 HeapFree(GetProcessHeap(), 0, buffer
);
3099 HeapFree(GetProcessHeap(), 0, xdg_config_dir
);
3101 WINE_ERR("out of memory\n");
3105 /***********************************************************************
3109 int PASCAL
wWinMain (HINSTANCE hInstance
, HINSTANCE prev
, LPWSTR cmdline
, int show
)
3111 static const WCHAR dash_aW
[] = {'-','a',0};
3112 static const WCHAR dash_rW
[] = {'-','r',0};
3113 static const WCHAR dash_uW
[] = {'-','u',0};
3114 static const WCHAR dash_wW
[] = {'-','w',0};
3116 LPWSTR token
= NULL
, p
;
3124 for( p
= cmdline
; p
&& *p
; )
3126 token
= next_token( &p
);
3129 if( !strcmpW( token
, dash_aW
) )
3131 RefreshFileTypeAssociations();
3134 if( !strcmpW( token
, dash_rW
) )
3139 if( !strcmpW( token
, dash_wW
) )
3141 else if ( !strcmpW( token
, dash_uW
) )
3143 else if( token
[0] == '-' )
3145 WINE_ERR( "unknown option %s\n", wine_dbgstr_w(token
) );
3152 bRet
= Process_URL( token
, bWait
);
3154 bRet
= Process_Link( token
, bWait
);
3157 WINE_ERR( "failed to build menu item for %s\n", wine_dbgstr_w(token
) );