Searched defs:CPropVariant (Results 1 – 2 of 2) sorted by relevance
15 CPropVariant() { vt = VT_EMPTY; wReserved1 = 0; } in CPropVariant() function21 …CPropVariant(bool bSrc) { vt = VT_BOOL; wReserved1 = 0; boolVal = (bSrc ? VARIANT_TRUE : VARIANT_F… in CPropVariant() function22 CPropVariant(Byte value) { vt = VT_UI1; wReserved1 = 0; bVal = value; } in CPropVariant() function23 CPropVariant(Int16 value) { vt = VT_I2; wReserved1 = 0; iVal = value; } in CPropVariant() function24 CPropVariant(Int32 value) { vt = VT_I4; wReserved1 = 0; lVal = value; } in CPropVariant() function25 CPropVariant(UInt32 value) { vt = VT_UI4; wReserved1 = 0; ulVal = value; } in CPropVariant() function26 CPropVariant(UInt64 value) { vt = VT_UI8; wReserved1 = 0; uhVal.QuadPart = value; } in CPropVariant() function27 CPropVariant(const FILETIME &value) { vt = VT_FILETIME; wReserved1 = 0; filetime = value; } in CPropVariant() function
12 CPropVariant::CPropVariant(const PROPVARIANT &varSrc) in CPropVariant() function in NWindows::NCOM::CPropVariant18 CPropVariant::CPropVariant(const CPropVariant &varSrc) in CPropVariant() function in NWindows::NCOM::CPropVariant24 CPropVariant::CPropVariant(BSTR bstrSrc) in CPropVariant() function in NWindows::NCOM::CPropVariant30 CPropVariant::CPropVariant(LPCOLESTR lpszSrc) in CPropVariant() function in NWindows::NCOM::CPropVariant