changes this callback back to BOOL so it works again. (#2378)
This commit is contained in:
parent
bbe603c758
commit
822b75c734
|
@ -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];
|
||||
|
||||
|
|
Loading…
Reference in New Issue