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

  1. /*
  2. *
  3. * NOTES:
  4. *
  5. * REVISIONS:
  6. * pcy18Feb93: Spilt server app and client app to separate files
  7. * TSC20May93: Changed VOID Start() to INT Start();
  8. * awm14Jan98: Added performance monitor object
  9. * mholly12May1999: add UPSTurnOff method
  10. */
  11. #ifndef _INC_NTSRVAP_H
  12. #define _INC_NTSRVAP_H
  13. #include "apc.h"
  14. #include "servapp.h"
  15. //
  16. // Defines
  17. //
  18. _CLASSDEF(NTServerApplication);
  19. //
  20. // Interface uses
  21. //
  22. _CLASSDEF(Event)
  23. class NTServerApplication : public ServerApplication
  24. {
  25. public:
  26. NTServerApplication(VOID);
  27. ~NTServerApplication(VOID);
  28. INT Start();
  29. VOID Idle();
  30. VOID Quit();
  31. VOID UPSTurnOff();
  32. };
  33. #endif