Leaked source code of windows server 2003
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.

36 lines
900 B

  1. //=================================================================
  2. //
  3. // LPVParams.h
  4. //
  5. // Copyright (c) 1999-2001 Microsoft Corporation, All Rights Reserved
  6. //
  7. // Revisions: 2/18/99 a-kevhu Created
  8. //
  9. //=================================================================
  10. #ifndef _LPVPARAMS_H
  11. #define _LPVPARAMS_H
  12. // Parameter class for LoadPropertyValues
  13. //=======================================
  14. class CLPVParams
  15. {
  16. public:
  17. CLPVParams() {}
  18. CLPVParams(CInstance* pInstance, CConfigMgrDevice* pDevice, DWORD dwReqProps);
  19. ~CLPVParams() {}
  20. CInstance* m_pInstance;
  21. CConfigMgrDevice* m_pDevice;
  22. DWORD m_dwReqProps;
  23. };
  24. inline CLPVParams::CLPVParams(CInstance* pInstance, CConfigMgrDevice* pDevice, DWORD dwReqProps)
  25. :m_pInstance(pInstance), m_pDevice(pDevice), m_dwReqProps(dwReqProps)
  26. {
  27. }
  28. #endif