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.

71 lines
1.6 KiB

  1. //
  2. // Driver Verifier UI
  3. // Copyright (c) Microsoft Corporation, 1999
  4. //
  5. //
  6. //
  7. // module: verifier.h
  8. // author: DMihai
  9. // created: 11/1/00
  10. //
  11. // Description:
  12. //
  13. // Main header file for the VERIFIER application
  14. //
  15. #if !defined(AFX_VERIFIER_H__0B3398A6_AD3D_482C_B915_670BA4D7F6E1__INCLUDED_)
  16. #define AFX_VERIFIER_H__0B3398A6_AD3D_482C_B915_670BA4D7F6E1__INCLUDED_
  17. #if _MSC_VER > 1000
  18. #pragma once
  19. #endif // _MSC_VER > 1000
  20. #ifndef __AFXWIN_H__
  21. #error include 'stdafx.h' before including this file for PCH
  22. #endif
  23. #include "resource.h" // main symbols
  24. //
  25. // Exit codes for cmd line execution
  26. //
  27. #define EXIT_CODE_SUCCESS 0
  28. #define EXIT_CODE_ERROR 1
  29. #define EXIT_CODE_REBOOT_NEEDED 2
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CVerifierApp:
  32. // See verifier.cpp for the implementation of this class
  33. //
  34. class CVerifierApp : public CWinApp
  35. {
  36. public:
  37. CVerifierApp();
  38. // Overrides
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CVerifierApp)
  41. public:
  42. virtual BOOL InitInstance();
  43. //}}AFX_VIRTUAL
  44. // Implementation
  45. //{{AFX_MSG(CVerifierApp)
  46. // NOTE - the ClassWizard will add and remove member functions here.
  47. // DO NOT EDIT what you see in these blocks of generated code !
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. /////////////////////////////////////////////////////////////////////////////
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_VERIFIER_H__0B3398A6_AD3D_482C_B915_670BA4D7F6E1__INCLUDED_)