and God said to the world
"Let there be dialogs" - Gates 3:86
This commit is contained in:
16
progmgr/dialog.c
Normal file
16
progmgr/dialog.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/* * * * * * * *\
|
||||
DIALOG.C -
|
||||
Copyright (c) 2023 freedom7341, Vortesys
|
||||
DESCRIPTION -
|
||||
Program Manager's dialogs and related
|
||||
common functions.
|
||||
LICENSE INFORMATION -
|
||||
MIT License, see LICENSE.txt in the root folder
|
||||
\* * * * * * * */
|
||||
|
||||
/* Headers */
|
||||
#include "progmgr.h"
|
||||
#include "dialog.h"
|
||||
#include "resource.h"
|
||||
// #define WIN32_LEAN_AND_MEAN
|
||||
#include <Windows.h>
|
||||
12
progmgr/dialog.h
Normal file
12
progmgr/dialog.h
Normal file
@@ -0,0 +1,12 @@
|
||||
/* * * * * * * *\
|
||||
DIALOG.H -
|
||||
Copyright (c) 2023 freedom7341, Vortesys
|
||||
DESCRIPTION -
|
||||
Dialog function prototypes and related
|
||||
common dialog functions.
|
||||
LICENSE INFORMATION -
|
||||
MIT License, see LICENSE.txt in the root folder
|
||||
\* * * * * * * */
|
||||
|
||||
/* Pragmas */
|
||||
#pragma once
|
||||
@@ -159,6 +159,7 @@
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="dialog.h" />
|
||||
<ClInclude Include="group.h" />
|
||||
<ClInclude Include="grpupdat.h" />
|
||||
<ClInclude Include="progmgr.h" />
|
||||
@@ -167,6 +168,7 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="desktop.c" />
|
||||
<ClCompile Include="dialog.c" />
|
||||
<ClCompile Include="progmgr.c" />
|
||||
<ClCompile Include="registry.c" />
|
||||
<ClCompile Include="group.c" />
|
||||
|
||||
@@ -33,6 +33,9 @@
|
||||
<ClInclude Include="grpupdat.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="dialog.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="progmgr.c">
|
||||
@@ -53,6 +56,9 @@
|
||||
<ClCompile Include="group.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="dialog.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="resource.rc">
|
||||
|
||||
Reference in New Issue
Block a user