changes this callback back to BOOL so it works again. (#2378)

This commit is contained in:
Squall Leonhart 2023-07-28 07:27:31 +10:00 committed by GitHub
parent bbe603c758
commit 822b75c734
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
void ClearAllx86Code(void);
void ProcessMenuItem(int ID);
#ifdef _WIN32
bool CALLBACK CompilerDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
BOOL CALLBACK CompilerDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
HMENU hRSPMenu = NULL;
#endif
@ -617,7 +617,7 @@ static bool GetBooleanCheck(HWND hDlg, DWORD DialogID)
return (IsDlgButtonChecked(hDlg, DialogID) == BST_CHECKED) ? true : false;
}
bool CALLBACK CompilerDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM /*lParam*/)
BOOL CALLBACK CompilerDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM /*lParam*/)
{
char Buffer[256];