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.
36 lines
543 B
36 lines
543 B
/*++
|
|
|
|
Copyright (c) 1994 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Data.h
|
|
|
|
Abstract:
|
|
|
|
Global variable definitions for the RNR Sample Service.
|
|
|
|
Author:
|
|
|
|
Charles K. Moore (keithmo) 24-July-1994
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _DATA_H_
|
|
#define _DATA_H_
|
|
|
|
|
|
//
|
|
// Service related data.
|
|
//
|
|
|
|
extern SERVICE_STATUS RnrServiceStatus; // Current service status.
|
|
extern HANDLE RnrShutdownEvent; // Shutdown event.
|
|
extern BOOL RnrShutdownInProgress; // Shutdown in progress if TRUE.
|
|
|
|
|
|
#endif // _DATA_H_
|
|
|