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.
40 lines
1.2 KiB
40 lines
1.2 KiB
/* win32.h */
|
|
/* Jeff Hostetler, Spyglass, Inc., 1994. */
|
|
/* Copyright (C) 1994, Spyglass, Inc. All rights reserved. */
|
|
|
|
#ifndef _WIN32_H_
|
|
#define _WIN32_H_
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
#define WIN32_LEAN_AND_MEAN /* for windows.h */
|
|
#endif
|
|
#include <windows.h>
|
|
#include <rc.h>
|
|
#ifdef FEATURE_OLD_AUTH_DIALOG
|
|
#include <dlg_pw.h>
|
|
#endif
|
|
/* REMOVE About/Config dialogs
|
|
#include <dlg_menu.h>
|
|
#include <dlg_conf.h>
|
|
*/
|
|
#include <htspmgui.h>
|
|
|
|
extern HINSTANCE gBasic_hInstance;
|
|
|
|
/* Provide standard declaration for a Window Procedure. The 'correct'
|
|
declaration for a window procedure changes even more quickly than
|
|
WinMain(). */
|
|
|
|
#define DCL_WinProc(name) \
|
|
LRESULT CALLBACK name( HWND hWnd, UINT uMsg, \
|
|
WPARAM wParam, LPARAM lParam)
|
|
|
|
|
|
|
|
/* Provide standard declaration for a Dialog Procedure. */
|
|
|
|
#define DCL_DlgProc(name) \
|
|
LRESULT CALLBACK name( HWND hDlg, UINT uMsg, \
|
|
WPARAM wParam, LPARAM lParam)
|
|
|
|
|
|
#endif /* _WIN32_H_ */
|