Updater/Win32: wWinMain should be WINAPI

This commit is contained in:
Connor McLaughlin 2020-11-24 14:52:25 +10:00
parent 1507824435
commit 16bfaad505
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ static void WaitForProcessToExit(int process_id)
CloseHandle(hProcess);
}
int wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nShowCmd)
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nShowCmd)
{
Win32ProgressCallback progress;