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.

28 lines
366 B

  1. #ifndef __ADS_PROPUTIL__
  2. #define __ADS_PROPUTIL__
  3. HRESULT
  4. PrintVariantArray(
  5. VARIANT var
  6. );
  7. HRESULT
  8. PrintVariant(
  9. VARIANT varPropData
  10. );
  11. HRESULT
  12. PrintProperty(
  13. BSTR bstrPropName,
  14. HRESULT hRetVal,
  15. VARIANT varPropData
  16. );
  17. HRESULT
  18. GetPropertyList(
  19. IADs * pADs,
  20. VARIANT ** ppVariant,
  21. PDWORD pcElementFetched
  22. );
  23. #endif