-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b335db9
commit cc62e8d
Showing
53 changed files
with
3,150 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); |
Oops, something went wrong.