resources... i hate them

the dialogs are pretty chill though
This commit is contained in:
freedom
2023-08-11 02:17:23 -06:00
parent 364afc7438
commit a4f7046760
6 changed files with 46 additions and 1 deletions

View File

@@ -13,4 +13,44 @@
#include "dialog.h"
#include "resource.h"
// #define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#include <Windows.h>
/* 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;
}
}