Files
Program-Manager-II/progmgr/dialog.h
2023-09-27 13:37:42 -06:00

18 lines
555 B
C

/* * * * * * * *\
DIALOG.H -
Copyright (c) 2023 Vortesys
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);