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.

74 lines
1.7 KiB

  1. /*++
  2. Copyright (C) 1997-2001 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. History:
  6. --*/
  7. // WMITest.h : main header file for the WMITEST application
  8. //
  9. #if !defined(AFX_WMITEST_H__4419F1A4_692B_11D3_BD30_0080C8E60955__INCLUDED_)
  10. #define AFX_WMITEST_H__4419F1A4_692B_11D3_BD30_0080C8E60955__INCLUDED_
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14. #ifndef __AFXWIN_H__
  15. #error include 'stdafx.h' before including this file for PCH
  16. #endif
  17. #include "resource.h" // main symbols
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CWMITestApp:
  20. // See WMITest.cpp for the implementation of this class
  21. //
  22. class CWMITestApp : public CWinApp
  23. {
  24. public:
  25. BOOL m_bLoadLastFile,
  26. m_bShowSystemProperties,
  27. m_bShowInheritedProperties,
  28. m_bTranslateValues,
  29. m_bEnablePrivsOnStartup,
  30. m_bPrivsEnabled,
  31. m_bDelFromWMI;
  32. DWORD m_dwUpdateFlag,
  33. m_dwClassUpdateMode;
  34. CWMITestApp();
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CWMITestApp)
  38. public:
  39. virtual BOOL InitInstance();
  40. virtual int ExitInstance();
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. //{{AFX_MSG(CWMITestApp)
  44. afx_msg void OnAppAbout();
  45. // NOTE - the ClassWizard will add and remove member functions here.
  46. // DO NOT EDIT what you see in these blocks of generated code !
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. extern CWMITestApp theApp;
  51. /////////////////////////////////////////////////////////////////////////////
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_WMITEST_H__4419F1A4_692B_11D3_BD30_0080C8E60955__INCLUDED_)