prep for more dialoggery

This commit is contained in:
freedom
2023-08-14 14:50:16 -06:00
parent 488070e73d
commit f632229b3c
2 changed files with 24 additions and 19 deletions

View File

@@ -17,24 +17,6 @@
/* 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 -
@@ -48,9 +30,32 @@ BOOL CALLBACK GroupDlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lPa
switch (message)
{
case WM_INITDIALOG:
// Place message cases here.
default:
return FALSE;
}
}
}
/* * * *\
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)
{
case WM_INITDIALOG:
// Place message cases here.
default:
return FALSE;
}
}

Binary file not shown.