Data Type : Character Manipulation
NLS_STATUS - Return code type for National Language Services (NLS) C API functions.
----------------------------------------------------------------------------------------------------------
#include <nls.h>
Definition :
typedef WORD NLS_STATUS;
Description :
There are several C API functions that return values of type NLS_STATUS. A return value of NLS_SUCCESS indicates that the function completed successfully. The value of NLS_SUCCESS is 0.
Example:
if (error = NLSFunction(...))
return (error);
The C API defines various non-zero NLS_STATUS values, or error codes, that are returned by C API functions in response to various error conditions. Specific NLS_STATUS error codes are defined in the C API header file nls.h.
See Also :
NLS_find
----------------------------------------------------------------------------------------------------------