2025-04-27 07:49:33 -04:00

37 lines
900 B
C++

//=================================================================
//
// LPVParams.h
//
// Copyright (c) 1999-2001 Microsoft Corporation, All Rights Reserved
//
// Revisions: 2/18/99 a-kevhu Created
//
//=================================================================
#ifndef _LPVPARAMS_H
#define _LPVPARAMS_H
// Parameter class for LoadPropertyValues
//=======================================
class CLPVParams
{
public:
CLPVParams() {}
CLPVParams(CInstance* pInstance, CConfigMgrDevice* pDevice, DWORD dwReqProps);
~CLPVParams() {}
CInstance* m_pInstance;
CConfigMgrDevice* m_pDevice;
DWORD m_dwReqProps;
};
inline CLPVParams::CLPVParams(CInstance* pInstance, CConfigMgrDevice* pDevice, DWORD dwReqProps)
:m_pInstance(pInstance), m_pDevice(pDevice), m_dwReqProps(dwReqProps)
{
}
#endif