rename dir 1

This commit is contained in:
Brady McDermott
2024-10-20 21:18:14 -06:00
parent b335db994a
commit cc62e8dc38
53 changed files with 3150 additions and 0 deletions

17
PROGMGR2/dialog.h Normal file
View File

@@ -0,0 +1,17 @@
/* * * * * * * *\
DIALOG.H -
Copyright (c) 2024 Vortesys, Brady McDermott
DESCRIPTION -
Dialog function prototypes and related
common dialog functions.
LICENSE INFORMATION -
MIT License, see LICENSE.txt in the root folder
\* * * * * * * */
/* Pragmas */
#pragma once
/* Function Prototypes */
BOOL CALLBACK NewGroupDlgProc(HWND hWndDlg, UINT message, WPARAM wParam, LPARAM lParam);
BOOL CALLBACK NewItemDlgProc(HWND hWndDlg, UINT message, WPARAM wParam, LPARAM lParam);
BOOL CALLBACK ShutdownDlgProc(HWND hWndDlg, UINT message, WPARAM wParam, LPARAM lParam);