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.
22 lines
281 B
22 lines
281 B
#ifndef __VARIANT_CONV__
|
|
#define __VARIANT_CONV__
|
|
|
|
HRESULT
|
|
PackString2Variant(
|
|
LPWSTR lpszData,
|
|
VARIANT * pvData
|
|
);
|
|
|
|
HRESULT
|
|
PackDWORD2Variant(
|
|
DWORD dwData,
|
|
VARIANT * pvData
|
|
);
|
|
|
|
HRESULT
|
|
PackBOOL2Variant(
|
|
BOOL fData,
|
|
VARIANT * pvData
|
|
);
|
|
|
|
#endif
|