D
drummerzw
Unregistered / Unconfirmed
GUEST, unregistred user!
新建一个属性username 测试后发现put_username(入参类型:BSTR) 可以赋值但get_username(返回值类型:BSTR)取不出值
在VC中调用如下
com_Ilogin *test;
CString tmp = "111";
test->put_username(tmp.AllocSysString());//已定义:BSTR AllocSysString() const;
BSTR temp;
test->get_username();
AfxMessageBox(CString(temp));
在VC中调用如下
com_Ilogin *test;
CString tmp = "111";
test->put_username(tmp.AllocSysString());//已定义:BSTR AllocSysString() const;
BSTR temp;
test->get_username();
AfxMessageBox(CString(temp));