diff --git a/progmgr/dialog.c b/progmgr/dialog.c index b90a0df..f1dbc61 100644 --- a/progmgr/dialog.c +++ b/progmgr/dialog.c @@ -13,4 +13,44 @@ #include "dialog.h" #include "resource.h" // #define WIN32_LEAN_AND_MEAN -#include \ No newline at end of file +#include + +/* Functions */ + +/* * * *\ + ItemDlgProc - + Dialog procedure for creating or modifying + an item. + RETURNS - + TRUE if message is handled, FALSE otherwise. +\* * * */ +BOOL CALLBACK ItemDlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam) +{ + switch (message) + { + + // Place message cases here. + + default: + return FALSE; + } +} + +/* * * *\ + GroupDlgProc - + Dialog procedure for creating or modifying + a group. + RETURNS - + TRUE if message is handled, FALSE otherwise. +\* * * */ +BOOL CALLBACK GroupDlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam) +{ + switch (message) + { + + // Place message cases here. + + default: + return FALSE; + } +} \ No newline at end of file diff --git a/progmgr/dialog.h b/progmgr/dialog.h index ccc044b..dcf5215 100644 --- a/progmgr/dialog.h +++ b/progmgr/dialog.h @@ -10,3 +10,7 @@ /* Pragmas */ #pragma once + +/* Function Prototypes */ +BOOL CALLBACK ItemDlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam); +BOOL CALLBACK GroupDlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam); diff --git a/progmgr/lang/dlg_en-US.rc b/progmgr/lang/dlg_en-US.rc index b6598ec..e0ee0ba 100644 Binary files a/progmgr/lang/dlg_en-US.rc and b/progmgr/lang/dlg_en-US.rc differ diff --git a/progmgr/lang/res_en-US.rc b/progmgr/lang/res_en-US.rc index 53fc5eb..06e3406 100644 Binary files a/progmgr/lang/res_en-US.rc and b/progmgr/lang/res_en-US.rc differ diff --git a/progmgr/resource.h b/progmgr/resource.h index 57613b1..52ad5bc 100644 Binary files a/progmgr/resource.h and b/progmgr/resource.h differ diff --git a/progmgr/resource.rc b/progmgr/resource.rc index c4bff2d..3120e9b 100644 --- a/progmgr/resource.rc +++ b/progmgr/resource.rc @@ -17,6 +17,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL #pragma code_page(65001) // UTF-8 #include "lang\res_en-US.rc" // English (US) +#include "lang\dlg_en-US.rc" // English (US) /* Icon Library */ // Primary