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.

37 lines
1.2 KiB

  1. // --------------------------------------------------------------------------
  2. // Module Name: BadApplication.h
  3. //
  4. // Copyright (c) 2000, Microsoft Corporation
  5. //
  6. // Class to encapsulate identification of a bad application.
  7. //
  8. // History: 2000-08-25 vtan created
  9. // 2000-11-04 vtan split into separate file
  10. // --------------------------------------------------------------------------
  11. #ifndef _BadApplication_
  12. #define _BadApplication_
  13. // --------------------------------------------------------------------------
  14. // CBadApplication
  15. //
  16. // Purpose: Implements abstraction of what defines a bad application.
  17. //
  18. // History: 2000-08-25 vtan created
  19. // 2000-11-04 vtan split into separate file
  20. // --------------------------------------------------------------------------
  21. class CBadApplication
  22. {
  23. public:
  24. CBadApplication (void);
  25. CBadApplication (const TCHAR *pszImageName);
  26. ~CBadApplication (void);
  27. bool operator == (const CBadApplication& compareObject) const;
  28. private:
  29. TCHAR _szImageName[MAX_PATH];
  30. };
  31. #endif /* _BadApplication_ */