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

//+---------------------------------------------------------------------------
//
// 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