The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
CComBSTR::operator !=
Returns the logical opposite of operator ==.
bool operator!=(
const CComBSTR& bstrSrc
) const throw( );
bool operator!=(
LPCOLESTR pszSrc
) const;
bool operator!=(
LPCSTR pszSrc
) const;
bool operator!=(
int nNull
) const throw( );
- bstrSrc
[in] A CComBSTR object.
- pszSrc
[in] A zero-terminated string.
- nNull
[in] Must be NULL.
Returns true if the item being compared is not equal to the CComBSTR object; otherwise, returns false.
CComBSTRs are compared textually in the context of the user's default locale. The final comparison operator just compares the contained string against NULL.
Requirements
Header: atlbase.h
Show: