windows-nt/Source/XPSP1/NT/admin/snapin/wsecmgr/precdisp.h
2020-09-26 16:20:57 +08:00

43 lines
871 B
C++

//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation 1996-2001.
//
// File: precdisp.h
//
// Contents: definition of PrecedenceDisplay
//
//----------------------------------------------------------------------------
#ifndef PRECDISP_H
#define PRECDISP_H
#include "wmihooks.h"
class PrecedenceDisplay
{
public:
PrecedenceDisplay (LPTSTR GPOName, LPTSTR Value, ULONG Status, ULONG Error, LPTSTR Value2 = L"") :
m_szGPO(GPOName),
m_szValue(Value),
m_uStatus(Status),
m_uError(Error),
m_szValue2(Value2)
{
}
virtual ~PrecedenceDisplay()
{
}
CString m_szGPO;
CString m_szValue;
CString m_szValue2;
ULONG m_uStatus;
ULONG m_uError;
};
typedef PrecedenceDisplay *PPRECEDENCEDISPLAY;
#endif // PRECDISP_H