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.

37 lines
809 B

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1997.
  5. //
  6. // File: rsopinfo.h
  7. //
  8. // Contents: Data for the RSOP mode result pane items
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 03-16-2000 stevebl Created
  15. //
  16. //---------------------------------------------------------------------------
  17. class CRsopProp;
  18. class CRSOPInfo
  19. {
  20. public:
  21. UINT m_nPrecedence;
  22. CString m_szPath;
  23. CString m_szGroup;
  24. CString m_szGPO;
  25. CString m_szFolder;
  26. BOOL m_fGrantType;
  27. BOOL m_fMoveType;
  28. UINT m_nPolicyRemoval;
  29. UINT m_nInstallationType;
  30. CRsopProp * m_pRsopProp;
  31. CRSOPInfo(){
  32. m_pRsopProp = NULL;
  33. }
  34. };