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.
42 lines
496 B
42 lines
496 B
/*++ BUILD Version: 0001 // Increment this if a change has global effects
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
System.h
|
|
|
|
Abstract:
|
|
|
|
|
|
Author:
|
|
|
|
Gregg R. Acheson (GreggA) 7-May-1993
|
|
|
|
Environment:
|
|
|
|
User Mode
|
|
|
|
--*/
|
|
|
|
#if ! defined( _SYSTEM_ )
|
|
|
|
#define _SYSTEM_
|
|
|
|
#include "wintools.h"
|
|
|
|
|
|
BOOL
|
|
BuildSystemReport(
|
|
IN HWND hWnd
|
|
);
|
|
|
|
BOOL
|
|
SystemDlgProc(
|
|
IN HWND hWnd,
|
|
IN UINT message,
|
|
IN WPARAM wParam,
|
|
IN LPARAM lParam
|
|
);
|
|
|
|
#endif // _SYSTEM_
|