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.

30 lines
739 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 2000
  6. //
  7. // File: cimmap.h
  8. //
  9. //
  10. // This file contains routines that will establish a mapping between
  11. // Wdm class instances and Cdm class instances. See
  12. // MapWdmClassToCimClass for more information.
  13. //
  14. //--------------------------------------------------------------------------
  15. HRESULT MapWdmClassToCimClass(
  16. IWbemServices *pWdmServices,
  17. IWbemServices *pCimServices,
  18. BSTR WdmClassName,
  19. BSTR CimClassName,
  20. OUT BSTR /* FREE */ **PnPDeviceIds,
  21. BSTR **WdmInstanceNames,
  22. BSTR **WdmRelPaths,
  23. BSTR **CimRelPaths,
  24. int *RelPathCount
  25. );