Home
last modified time | relevance | path

Searched refs:comstr (Results 1 – 2 of 2) sorted by relevance

/reactos/modules/rostests/apitests/atl/
H A DCComBSTR.cpp17 static void verify_str_imp2(const CComBSTR& comstr, PCWSTR expected, size_t ExpectedLength) in verify_str_imp2() argument
19 BSTR str = (BSTR)comstr; in verify_str_imp2()
29 size_t Length = comstr.Length(); in verify_str_imp2()
31 Length = comstr.ByteLength(); in verify_str_imp2()
42 static void verify_str_imp(const CComBSTR& comstr, PCWSTR expected) in verify_str_imp() argument
44 verify_str_imp2(comstr, expected, expected ? wcslen(expected) : 0); in verify_str_imp()
H A DCComVariant.cpp71 CComVariant olestr((LPCOLESTR)bstr), comstr(bstr); in test_construction() local
74 ok(V_VT(&comstr) == VT_BSTR, "Expected .vt to be VT_LPWSTR, was %u\n", V_VT(&comstr)); in test_construction()
75 …ok(!wcscmp(V_BSTR(&comstr), L"TESTW"), "Expected value to be L\"TESTW\", was: %s\n", wine_dbgstr_w… in test_construction()