mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 00:54:40 +00:00
Fixed missing module in makefile.
svn path=/trunk/; revision=3202
This commit is contained in:
parent
00bd48992d
commit
c63a30db15
4 changed files with 9 additions and 8 deletions
|
@ -33,6 +33,7 @@ OBJS = about.o \
|
||||||
framewnd.o \
|
framewnd.o \
|
||||||
childwnd.o \
|
childwnd.o \
|
||||||
debug.o \
|
debug.o \
|
||||||
|
dialogs.o \
|
||||||
draw.o \
|
draw.o \
|
||||||
entries.o \
|
entries.o \
|
||||||
run.o \
|
run.o \
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
#include "debug.h"
|
#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;
|
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;
|
static struct ExecuteDialog* dlg;
|
||||||
int id;
|
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;
|
static struct ExecuteDialog* dlg;
|
||||||
int id;
|
int id;
|
||||||
|
|
|
@ -39,9 +39,9 @@ struct ExecuteDialog {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
BOOL CALLBACK ExecuteDialogWndProg(HWND, UINT, WPARAM, LPARAM);
|
BOOL CALLBACK ExecuteDialogWndProc(HWND, UINT, WPARAM, LPARAM);
|
||||||
BOOL CALLBACK ExecuteViewFileTypeWndProc(HWND, UINT, WPARAM, LPARAM);
|
BOOL CALLBACK ViewFileTypeWndProc(HWND, UINT, WPARAM, LPARAM);
|
||||||
BOOL CALLBACK ExecuteOptionsConfirmationWndProc(HWND, UINT, WPARAM, LPARAM);
|
BOOL CALLBACK OptionsConfirmationWndProc(HWND, UINT, WPARAM, LPARAM);
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
|
@ -411,14 +411,14 @@ LRESULT _CmdWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
case ID_VIEW_BY_FILE_TYPE:
|
case ID_VIEW_BY_FILE_TYPE:
|
||||||
{
|
{
|
||||||
struct ExecuteDialog dlg = {{0}};
|
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;
|
break;
|
||||||
case ID_OPTIONS_CONFIRMATION:
|
case ID_OPTIONS_CONFIRMATION:
|
||||||
{
|
{
|
||||||
struct ExecuteDialog dlg = {{0}};
|
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;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue