HomeSort by relevance Sort by last modified time
    Searched defs:CPropVariant (Results 1 - 2 of 2) sorted by null

  /external/lzma/CPP/Windows/
PropVariant.h 12 class CPropVariant : public tagPROPVARIANT
15 CPropVariant() { vt = VT_EMPTY; wReserved1 = 0; }
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); };
22 CPropVariant(Byte value) { vt = VT_UI1; wReserved1 = 0; bVal = value; }
    [all...]
PropVariant.cpp 12 CPropVariant::CPropVariant(const PROPVARIANT &varSrc)
18 CPropVariant::CPropVariant(const CPropVariant &varSrc)
24 CPropVariant::CPropVariant(BSTR bstrSrc)
30 CPropVariant::CPropVariant(LPCOLESTR lpszSrc)
36 CPropVariant& CPropVariant::operator=(const CPropVariant &varSrc)
    [all...]

Completed in 48 milliseconds