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.

64 lines
1.0 KiB

  1. HRESULT
  2. put_BSTR_Property(
  3. IADs *pADsObject,
  4. BSTR bstrPropertyName,
  5. BSTR pSrcStringProperty
  6. );
  7. HRESULT
  8. get_BSTR_Property(
  9. IADs *pADsObject,
  10. BSTR bstrPropertyName,
  11. BSTR *pSrcStringProperty
  12. );
  13. HRESULT
  14. put_DWORD_Property(
  15. IADs *pADsObject,
  16. BSTR bstrPropertyName,
  17. DWORD *pdwSrcProperty
  18. );
  19. HRESULT
  20. get_DWORD_Property(
  21. IADs *pADsObject,
  22. BSTR bstrPropertyName,
  23. PDWORD pdwDestProperty
  24. );
  25. HRESULT
  26. put_Dispatch_Property(
  27. IADs *pADsObject,
  28. BSTR bstrPropertyName,
  29. IDispatch *pdwSrcProperty
  30. );
  31. HRESULT
  32. get_Dispatch_Property(
  33. IADs *pADsObject,
  34. BSTR bstrPropertyName,
  35. IDispatch **ppDispatch
  36. );
  37. HRESULT
  38. put_MULTISZ_Property(
  39. IADs *pADsObject,
  40. BSTR bstrPropertyName,
  41. BSTR pSrcStringProperty
  42. );
  43. HRESULT
  44. put_BOOL_Property(
  45. IADs *pADsObject,
  46. BSTR bstrPropertyName,
  47. BOOL *bSrcProperty
  48. );
  49. HRESULT
  50. get_UI1Array_Property(
  51. IADs *pADsObject,
  52. BSTR bstrPropertyName,
  53. IID *pIID
  54. );