mirror of https://github.com/tongzx/nt5src
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
64 lines
1.0 KiB
HRESULT
|
|
put_BSTR_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
BSTR pSrcStringProperty
|
|
);
|
|
|
|
HRESULT
|
|
get_BSTR_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
BSTR *pSrcStringProperty
|
|
);
|
|
|
|
HRESULT
|
|
put_DWORD_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
DWORD *pdwSrcProperty
|
|
);
|
|
|
|
HRESULT
|
|
get_DWORD_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
PDWORD pdwDestProperty
|
|
);
|
|
|
|
HRESULT
|
|
put_Dispatch_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
IDispatch *pdwSrcProperty
|
|
);
|
|
|
|
HRESULT
|
|
get_Dispatch_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
IDispatch **ppDispatch
|
|
);
|
|
|
|
HRESULT
|
|
put_MULTISZ_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
BSTR pSrcStringProperty
|
|
);
|
|
|
|
|
|
HRESULT
|
|
put_BOOL_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
BOOL *bSrcProperty
|
|
);
|
|
|
|
|
|
HRESULT
|
|
get_UI1Array_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
IID *pIID
|
|
);
|