Source code of Windows XP (NT5)
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.

41 lines
1.3 KiB

  1. // --------------------------------------------------------------------------
  2. // Module Name: BadApplicationService.h
  3. //
  4. // Copyright (c) 2000, Microsoft Corporation
  5. //
  6. // This file contains a class that implements the bad application manager
  7. // service specifics.
  8. //
  9. // History: 2000-12-04 vtan created
  10. // --------------------------------------------------------------------------
  11. #ifndef _BadApplicationService_
  12. #define _BadApplicationService_
  13. #include "Service.h"
  14. // --------------------------------------------------------------------------
  15. // CBadApplicationService
  16. //
  17. // Purpose: Implements bad application manager server specific
  18. // functionality to the CService class.
  19. //
  20. // History: 2000-12-04 vtan created
  21. // --------------------------------------------------------------------------
  22. class CBadApplicationService : public CService
  23. {
  24. private:
  25. CBadApplicationService (void);
  26. public:
  27. CBadApplicationService (CAPIConnection *pAPIConnection, CServerAPI *pServerAPI);
  28. virtual ~CBadApplicationService (void);
  29. public:
  30. static const TCHAR* GetName (void);
  31. private:
  32. static const TCHAR s_szName[];
  33. };
  34. #endif /* _BadApplicationService_ */