Searched defs:CPropVariant (Results 1 - 2 of 2) sorted by relevance

/external/lzma/CPP/Windows/
H A DPropVariant.h12 class CPropVariant : public tagPROPVARIANT class in namespace:NWindows::NCOM
15 CPropVariant() { vt = VT_EMPTY; wReserved1 = 0; } function in class:NWindows::NCOM::CPropVariant
16 ~CPropVariant() { Clear(); }
17 CPropVariant(const PROPVARIANT &varSrc);
18 CPropVariant(const CPropVariant &varSrc);
19 CPropVariant(BSTR bstrSrc);
20 CPropVariant(LPCOLESTR lpszSrc);
21 CPropVariant(bool bSrc) { vt = VT_BOOL; wReserved1 = 0; boolVal = (bSrc ? VARIANT_TRUE : VARIANT_FALSE); }; function in class:NWindows::NCOM::CPropVariant
22 CPropVariant(Byt function in class:NWindows::NCOM::CPropVariant
23 CPropVariant(Int16 value) { vt = VT_I2; wReserved1 = 0; iVal = value; } function in class:NWindows::NCOM::CPropVariant
24 CPropVariant(Int32 value) { vt = VT_I4; wReserved1 = 0; lVal = value; } function in class:NWindows::NCOM::CPropVariant
25 CPropVariant(UInt32 value) { vt = VT_UI4; wReserved1 = 0; ulVal = value; } function in class:NWindows::NCOM::CPropVariant
26 CPropVariant(UInt64 value) { vt = VT_UI8; wReserved1 = 0; uhVal.QuadPart = value; } function in class:NWindows::NCOM::CPropVariant
27 CPropVariant(const FILETIME &value) { vt = VT_FILETIME; wReserved1 = 0; filetime = value; } function in class:NWindows::NCOM::CPropVariant
[all...]
H A DPropVariant.cpp12 CPropVariant::CPropVariant(const PROPVARIANT &varSrc) function in class:NWindows::NCOM::CPropVariant
18 CPropVariant::CPropVariant(const CPropVariant &varSrc) function in class:NWindows::NCOM::CPropVariant
24 CPropVariant::CPropVariant(BSTR bstrSrc) function in class:NWindows::NCOM::CPropVariant
30 CPropVariant::CPropVariant(LPCOLESTR lpszSrc) function in class:NWindows::NCOM::CPropVariant
36 CPropVariant
[all...]

Completed in 193 milliseconds