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.
49 lines
567 B
49 lines
567 B
/*++ BUILD Version: 0001 // Increment this if a change has global effects
|
|
|
|
Copyright (c) 1994 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ResPrint.h
|
|
|
|
Abstract:
|
|
|
|
|
|
Author:
|
|
|
|
Gregg R. Acheson (GreggA) 07-Feb-1994
|
|
|
|
Environment:
|
|
|
|
User Mode
|
|
|
|
--*/
|
|
|
|
#if ! defined( _RESPRINT_ )
|
|
|
|
#define _RESPRINT_
|
|
|
|
#include "wintools.h"
|
|
#include "registry.h"
|
|
|
|
|
|
BOOL
|
|
BuildDevicesReport(
|
|
IN HWND hWnd,
|
|
IN UINT iDetailLevel
|
|
);
|
|
|
|
|
|
BOOL
|
|
BuildResourceReport(
|
|
IN HWND hWnd,
|
|
IN UINT iDetailLevel
|
|
);
|
|
|
|
BOOL
|
|
BuildDMAReport(
|
|
IN HWND hWnd);
|
|
|
|
#endif // _RESPRINT_
|
|
|
|
|