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.

38 lines
643 B

  1. /*****************************************************************************
  2. Copyright (c) Microsoft Corporation
  3. Module Name:
  4. ShowError.h
  5. Abstract:
  6. This module contanins function definations required by ShowError.cpp
  7. Author:
  8. Akhil Gokhale 03-Oct.-2000
  9. Revision History:
  10. *******************************************************************************/
  11. #ifndef SHOWERROR_H
  12. #define SHOWERROR_H
  13. class CShowError
  14. {
  15. public:
  16. LPCTSTR ShowReason();
  17. CShowError();
  18. CShowError(LONG lErrorNumber);
  19. virtual ~CShowError();
  20. private:
  21. LONG m_lErrorNumber;
  22. public:
  23. TCHAR m_szErrorMsg[(MAX_RES_STRING*2)+1];
  24. };
  25. #endif