mshtml: Declare prototype of wine_dos_get_file_name correctly; fixes Gecko install on win64.

This commit is contained in:
Jeremy White 2009-11-18 14:46:00 -06:00 committed by Alexandre Julliard
parent ed5a2992f3
commit 9145a1cdb2
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ static BOOL install_from_unix_file(const char *file_name)
int fd;
BOOL ret;
static WCHAR *(*wine_get_dos_file_name)(const char*);
static WCHAR * (CDECL *wine_get_dos_file_name)(const char*);
static const WCHAR kernel32W[] = {'k','e','r','n','e','l','3','2','.','d','l','l',0};
fd = open(file_name, O_RDONLY);