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.

42 lines
871 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation 1996-2001.
  5. //
  6. // File: precdisp.h
  7. //
  8. // Contents: definition of PrecedenceDisplay
  9. //
  10. //----------------------------------------------------------------------------
  11. #ifndef PRECDISP_H
  12. #define PRECDISP_H
  13. #include "wmihooks.h"
  14. class PrecedenceDisplay
  15. {
  16. public:
  17. PrecedenceDisplay (LPTSTR GPOName, LPTSTR Value, ULONG Status, ULONG Error, LPTSTR Value2 = L"") :
  18. m_szGPO(GPOName),
  19. m_szValue(Value),
  20. m_uStatus(Status),
  21. m_uError(Error),
  22. m_szValue2(Value2)
  23. {
  24. }
  25. virtual ~PrecedenceDisplay()
  26. {
  27. }
  28. CString m_szGPO;
  29. CString m_szValue;
  30. CString m_szValue2;
  31. ULONG m_uStatus;
  32. ULONG m_uError;
  33. };
  34. typedef PrecedenceDisplay *PPRECEDENCEDISPLAY;
  35. #endif // PRECDISP_H