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
900 B
37 lines
900 B
//=================================================================
|
|
|
|
//
|
|
|
|
// 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
|