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.

22 lines
281 B

  1. #ifndef __VARIANT_CONV__
  2. #define __VARIANT_CONV__
  3. HRESULT
  4. PackString2Variant(
  5. LPWSTR lpszData,
  6. VARIANT * pvData
  7. );
  8. HRESULT
  9. PackDWORD2Variant(
  10. DWORD dwData,
  11. VARIANT * pvData
  12. );
  13. HRESULT
  14. PackBOOL2Variant(
  15. BOOL fData,
  16. VARIANT * pvData
  17. );
  18. #endif