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.
73 lines
1.1 KiB
73 lines
1.1 KiB
/*++ BUILD Version: 0001 // Increment this if a change has global effects
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Service.h
|
|
|
|
Abstract:
|
|
|
|
This module contains the types and function prototypes for creating
|
|
and diaplying lists of files.
|
|
|
|
Author:
|
|
|
|
David J. Gilman (davegi) 27-Nov-1992
|
|
Gregg R. Acheson (GreggA) 7-May-1993
|
|
|
|
Environment:
|
|
|
|
User Mode
|
|
|
|
--*/
|
|
|
|
#if ! defined( _SERVICE_ )
|
|
|
|
#define _SERVICE_
|
|
|
|
#define SZ_CURRENTVERSIONKEY TEXT("Software\\Microsoft\\Windows NT\\CurrentVersion")
|
|
#define SZ_SYSTEMROOT TEXT("SystemRoot")
|
|
|
|
#include "wintools.h"
|
|
|
|
BOOL
|
|
BuildServicesReport(
|
|
IN HWND hWnd,
|
|
IN UINT iDetailLevel
|
|
);
|
|
|
|
BOOL
|
|
BuildReports(
|
|
IN HWND hWnd,
|
|
DWORD ServiceType,
|
|
IN UINT iDetailLevel
|
|
);
|
|
|
|
BOOL
|
|
DevicesAndServicesDetailsProc(
|
|
IN HWND hWnd,
|
|
IN UINT message,
|
|
IN WPARAM wParam,
|
|
IN LPARAM lParam
|
|
);
|
|
|
|
BOOL
|
|
DevicesAndServicesDetailsProc2(
|
|
IN HWND hWnd,
|
|
IN UINT message,
|
|
IN WPARAM wParam,
|
|
IN LPARAM lParam
|
|
);
|
|
|
|
|
|
BOOL
|
|
DevicesAndServicesTabProc(
|
|
IN HWND hWnd,
|
|
IN UINT message,
|
|
IN WPARAM wParam,
|
|
IN LPARAM lParam
|
|
);
|
|
|
|
#endif // _SERVICE_
|
|
|