====== CzStr::Compare ====== ===== Description ===== Compare the contents of a CzStr object with a C-style string (case sensitive). ===== Function prototype ===== int Compare(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, and non-zero otherwise. See [[http://www.cplusplus.com/reference/clibrary/cstring/strcmp.html|strcmp]] for meaning of non-zero values. ===== Comments ===== None.