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
535 B

  1. //
  2. // Copyright 2001 - Microsoft Corporation
  3. //
  4. //
  5. // Created By:
  6. // Geoff Pease (GPease) 30-JAN-2001
  7. //
  8. // Maintained By:
  9. // Geoff Pease (GPease) 30-JAN-2001
  10. //
  11. #pragma once
  12. HRESULT
  13. PropVariantFromString(
  14. LPWSTR pszTextIn
  15. , UINT nCodePageIn
  16. , ULONG dwFlagsIn
  17. , VARTYPE vtSaveIn
  18. , PROPVARIANT* pvarOut
  19. );
  20. HRESULT
  21. PropVariantToBSTR(
  22. PROPVARIANT * pvarIn
  23. , UINT nCodePageIn
  24. , ULONG dwFlagsIn
  25. , BSTR * pbstrOut
  26. );