Leaked source code of windows server 2003
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.
 
 
 
 
 
 

43 lines
690 B

/*
*
* NOTES:
*
* REVISIONS:
* pcy18Feb93: Spilt server app and client app to separate files
* TSC20May93: Changed VOID Start() to INT Start();
* awm14Jan98: Added performance monitor object
* mholly12May1999: add UPSTurnOff method
*/
#ifndef _INC_NTSRVAP_H
#define _INC_NTSRVAP_H
#include "apc.h"
#include "servapp.h"
//
// Defines
//
_CLASSDEF(NTServerApplication);
//
// Interface uses
//
_CLASSDEF(Event)
class NTServerApplication : public ServerApplication
{
public:
NTServerApplication(VOID);
~NTServerApplication(VOID);
INT Start();
VOID Idle();
VOID Quit();
VOID UPSTurnOff();
};
#endif