Skip to content

NLS STATUS

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 NLS_find_substr NLS_get NLS_isalnum NLS_isalpha NLS_isarith NLS_iscntrl NLS_isdigit NLS_isleadbyte NLS_islower NLS_ispunct NLS_isspace NLS_isupper NLS_load_charset NLS_put NLS_put_term NLS_string_bytes NLS_string_chars NLS_translate NLS_unload_charset