mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
675 B
23 lines
675 B
/*************************************************************************\
|
|
*
|
|
* UI for Windows NT Separator Page Features
|
|
*
|
|
* Dialog for Defining and Setting up Separator Page data and options
|
|
* Record these info into Registry.
|
|
*
|
|
* Created: 7-27-1995
|
|
*
|
|
\*************************************************************************/
|
|
|
|
#include <windows.h>
|
|
|
|
#include "sepdlg.h"
|
|
|
|
LRESULT APIENTRY SepDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
|
|
{
|
|
DWORD retCode;
|
|
retCode = DialogBox(hInstance, L"SepDlg", NULL, (DLGPROC)SepDlgProc);
|
|
return (retCode);
|
|
}
|