Commit dab61cdc authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

explorer: Put the calling convention inside the function pointer parentheses.

As required by MSVC.
parent 318d0272
......@@ -371,8 +371,8 @@ static void fill_menu(struct menu_item* item)
static void run_dialog(void)
{
void WINAPI (*pRunFileDlg)(HWND hWndOwner, HICON hIcon, LPCSTR lpszDir,
LPCSTR lpszTitle, LPCSTR lpszDesc, DWORD dwFlags);
void (WINAPI *pRunFileDlg)(HWND owner, HICON icon, const char *dir,
const char *title, const char *desc, DWORD flags);
HMODULE hShell32;
hShell32 = LoadLibraryW(L"shell32");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment