Difference between revisions of "Samba4/CLI/NTSTATUS"
Line 3: | Line 3: | ||
<pre> | <pre> | ||
typedef uint32_t NTSTATUS; | typedef uint32_t NTSTATUS; | ||
+ | </pre> | ||
+ | |||
+ | = Functions = | ||
+ | |||
+ | == nt_errstr() == | ||
+ | |||
+ | <pre> | ||
+ | const char *nt_errstr(NTSTATUS nt_code); | ||
+ | </pre> | ||
+ | |||
+ | == get_friendly_nt_error_msg() == | ||
+ | |||
+ | <pre> | ||
+ | const char *get_friendly_nt_error_msg(NTSTATUS nt_code); | ||
+ | </pre> | ||
+ | |||
+ | == get_nt_error_c_code() == | ||
+ | |||
+ | <pre> | ||
+ | const char *get_nt_error_c_code(NTSTATUS nt_code); | ||
+ | </pre> | ||
+ | |||
+ | == nt_status_string_to_code() == | ||
+ | |||
+ | <pre> | ||
+ | NTSTATUS nt_status_string_to_code(const char *nt_status_str); | ||
</pre> | </pre> |
Latest revision as of 03:00, 8 January 2010
Contents
Data Types
typedef uint32_t NTSTATUS;
Functions
nt_errstr()
const char *nt_errstr(NTSTATUS nt_code);
get_friendly_nt_error_msg()
const char *get_friendly_nt_error_msg(NTSTATUS nt_code);
get_nt_error_c_code()
const char *get_nt_error_c_code(NTSTATUS nt_code);
nt_status_string_to_code()
NTSTATUS nt_status_string_to_code(const char *nt_status_str);