wineconsole: Use correct prototypes for dialog procs.

This commit is contained in:
Mike McCormack 2006-06-06 14:33:17 +09:00 committed by Alexandre Julliard
parent 8afbf73c30
commit ce238a4087
1 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@ struct dialog_info
* *
* Dialog prop for the option property sheet * Dialog prop for the option property sheet
*/ */
static BOOL WINAPI WCUSER_OptionDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam) static INT_PTR WINAPI WCUSER_OptionDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{ {
struct dialog_info* di; struct dialog_info* di;
unsigned idc; unsigned idc;
@ -516,7 +516,7 @@ static BOOL fill_list_font(struct dialog_info* di)
* *
* Dialog proc for the Font property sheet * Dialog proc for the Font property sheet
*/ */
static BOOL WINAPI WCUSER_FontDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam) static INT_PTR WINAPI WCUSER_FontDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{ {
struct dialog_info* di; struct dialog_info* di;
@ -596,7 +596,7 @@ static BOOL WINAPI WCUSER_FontDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM
* *
* Dialog proc for the config property sheet * Dialog proc for the config property sheet
*/ */
static BOOL WINAPI WCUSER_ConfigDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam) static INT_PTR WINAPI WCUSER_ConfigDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{ {
struct dialog_info* di; struct dialog_info* di;
@ -699,7 +699,7 @@ static BOOL WINAPI WCUSER_ConfigDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPAR
* Dialog Procedure for choosing how to handle modification to the * Dialog Procedure for choosing how to handle modification to the
* console settings. * console settings.
*/ */
static BOOL WINAPI WCUSER_SaveDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam) static INT_PTR WINAPI WCUSER_SaveDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{ {
switch (msg) switch (msg)
{ {