From: Robert Dickenson Date: Tue, 9 Jul 2002 21:46:46 +0000 (+0000) Subject: Fixed missing module in makefile. X-Git-Tag: ReactOS-0.0.20~113 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=c63a30db1562321297fbe8c13e92b23a7e29be93 Fixed missing module in makefile. svn path=/trunk/; revision=3202 --- diff --git a/rosapps/winfile/Makefile b/rosapps/winfile/Makefile index ffd93f534b5..c5768937b4d 100644 --- a/rosapps/winfile/Makefile +++ b/rosapps/winfile/Makefile @@ -33,6 +33,7 @@ OBJS = about.o \ framewnd.o \ childwnd.o \ debug.o \ + dialogs.o \ draw.o \ entries.o \ run.o \ diff --git a/rosapps/winfile/dialogs.c b/rosapps/winfile/dialogs.c index 56411961791..c796b7b112f 100644 --- a/rosapps/winfile/dialogs.c +++ b/rosapps/winfile/dialogs.c @@ -50,7 +50,7 @@ #include "debug.h" -BOOL CALLBACK ExecuteDialogWndProg(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) +BOOL CALLBACK ExecuteDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { static struct ExecuteDialog* dlg; @@ -77,7 +77,7 @@ BOOL CALLBACK ExecuteDialogWndProg(HWND hDlg, UINT message, WPARAM wParam, LPARA } -BOOL CALLBACK ExecuteOptionsConfirmationWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) +BOOL CALLBACK OptionsConfirmationWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { static struct ExecuteDialog* dlg; int id; @@ -126,7 +126,7 @@ BOOL CALLBACK ExecuteOptionsConfirmationWndProc(HWND hDlg, UINT message, WPARAM } -BOOL CALLBACK ExecuteViewFileTypeWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) +BOOL CALLBACK ViewFileTypeWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { static struct ExecuteDialog* dlg; int id; diff --git a/rosapps/winfile/dialogs.h b/rosapps/winfile/dialogs.h index 97f4bae7d6d..8a1816ff3cf 100644 --- a/rosapps/winfile/dialogs.h +++ b/rosapps/winfile/dialogs.h @@ -39,9 +39,9 @@ struct ExecuteDialog { }; -BOOL CALLBACK ExecuteDialogWndProg(HWND, UINT, WPARAM, LPARAM); -BOOL CALLBACK ExecuteViewFileTypeWndProc(HWND, UINT, WPARAM, LPARAM); -BOOL CALLBACK ExecuteOptionsConfirmationWndProc(HWND, UINT, WPARAM, LPARAM); +BOOL CALLBACK ExecuteDialogWndProc(HWND, UINT, WPARAM, LPARAM); +BOOL CALLBACK ViewFileTypeWndProc(HWND, UINT, WPARAM, LPARAM); +BOOL CALLBACK OptionsConfirmationWndProc(HWND, UINT, WPARAM, LPARAM); #ifdef __cplusplus diff --git a/rosapps/winfile/framewnd.c b/rosapps/winfile/framewnd.c index ab4a03e3131..fb2fb0e28ed 100644 --- a/rosapps/winfile/framewnd.c +++ b/rosapps/winfile/framewnd.c @@ -411,14 +411,14 @@ LRESULT _CmdWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) case ID_VIEW_BY_FILE_TYPE: { struct ExecuteDialog dlg = {{0}}; - if (DialogBoxParam(Globals.hInstance, MAKEINTRESOURCE(IDD_DIALOG_VIEW_TYPE), hWnd, ExecuteViewFileTypeWndProc, (LPARAM)&dlg) == IDOK) { + if (DialogBoxParam(Globals.hInstance, MAKEINTRESOURCE(IDD_DIALOG_VIEW_TYPE), hWnd, ViewFileTypeWndProc, (LPARAM)&dlg) == IDOK) { } } break; case ID_OPTIONS_CONFIRMATION: { struct ExecuteDialog dlg = {{0}}; - if (DialogBoxParam(Globals.hInstance, MAKEINTRESOURCE(IDD_DIALOG_OPTIONS_CONFIRMATON), hWnd, ExecuteOptionsConfirmationWndProc, (LPARAM)&dlg) == IDOK) { + if (DialogBoxParam(Globals.hInstance, MAKEINTRESOURCE(IDD_DIALOG_OPTIONS_CONFIRMATON), hWnd, OptionsConfirmationWndProc, (LPARAM)&dlg) == IDOK) { } } break;