String type | Value |
Comparison | int bstrcmp(const BSTR bstr1, const BSTR bstr2); int bstrncmp(const BSTR bstr1, const BSTR bstr2, int cChars); int bstrcmpi(const BSTR bstr1, const BSTR bstr2); int bstrncmpi(const BSTR bstr1, const BSTR bstr2, int cChars); |
Length | int bstrlen(const BSTR bstr); |
Copy | BSTR bstrcpy(BSTR& bstrDst, const BSTR bstrSrc); BSTR bstrncpy(BSTR& bstrDst, const BSTR bstrSrc, int cChars); |
Allocate | BSTR bstralloc(const BSTR bstr); BSTR bstralloc(const char *sz); BSTR bstralloc(const WCHAR *wsz); |
Comments
Frees memory allocated by bstralloc using SysFreeString.