====== CzStr::CompareNoCase ====== ===== Description ===== Compare the contents of a CzStr object with a C-style string (case //in//sensitive). ===== Function prototype ===== int CompareNoCase(const char* lpText); ===== Arguments ===== ^ Name ^ Type ^ Comment ^ | lpText | const char* | A handle to a C-style string, the contents of which are to be compared with the string in a CzStr object. | ===== Return value ===== Zero if //lpText// is identical to the string contained in the CzStr object (ignoring case differences), and non-zero otherwise. See [[http://www.cplusplus.com/reference/clibrary/cstring/strcmp.html|strcmp]] for meaning of non-zero values. ===== Comments ===== None.