File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -346,6 +346,7 @@ const struct nt_err_code_struct nt_errs[] = {
346346 {"NT_STATUS_STACK_OVERFLOW" , NT_STATUS_STACK_OVERFLOW },
347347 {"NT_STATUS_NO_SUCH_PACKAGE" , NT_STATUS_NO_SUCH_PACKAGE },
348348 {"NT_STATUS_BAD_FUNCTION_TABLE" , NT_STATUS_BAD_FUNCTION_TABLE },
349+ {"NT_STATUS_VARIABLE_NOT_FOUND" , NT_STATUS_VARIABLE_NOT_FOUND },
349350 {"NT_STATUS_DIRECTORY_NOT_EMPTY" , NT_STATUS_DIRECTORY_NOT_EMPTY },
350351 {"NT_STATUS_FILE_CORRUPT_ERROR" , NT_STATUS_FILE_CORRUPT_ERROR },
351352 {"NT_STATUS_NOT_A_DIRECTORY" , NT_STATUS_NOT_A_DIRECTORY },
Original file line number Diff line number Diff line change @@ -301,6 +301,7 @@ extern const struct nt_err_code_struct nt_errs[];
301301#define NT_STATUS_STACK_OVERFLOW (0xC0000000 | 0x00fd)
302302#define NT_STATUS_NO_SUCH_PACKAGE (0xC0000000 | 0x00fe)
303303#define NT_STATUS_BAD_FUNCTION_TABLE (0xC0000000 | 0x00ff)
304+ #define NT_STATUS_VARIABLE_NOT_FOUND (0xC0000000 | 0x0100)
304305#define NT_STATUS_DIRECTORY_NOT_EMPTY (0xC0000000 | 0x0101)
305306#define NT_STATUS_FILE_CORRUPT_ERROR (0xC0000000 | 0x0102)
306307#define NT_STATUS_NOT_A_DIRECTORY (0xC0000000 | 0x0103)
Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ static const struct {
391391 ERRHRD , ERRgeneral , NT_STATUS_STACK_OVERFLOW }, {
392392 ERRHRD , ERRgeneral , NT_STATUS_NO_SUCH_PACKAGE }, {
393393 ERRHRD , ERRgeneral , NT_STATUS_BAD_FUNCTION_TABLE }, {
394- ERRDOS , 203 , 0xc0000100 }, {
394+ ERRDOS , 203 , NT_STATUS_VARIABLE_NOT_FOUND }, {
395395 ERRDOS , 145 , NT_STATUS_DIRECTORY_NOT_EMPTY }, {
396396 ERRHRD , ERRgeneral , NT_STATUS_FILE_CORRUPT_ERROR }, {
397397 ERRDOS , 267 , NT_STATUS_NOT_A_DIRECTORY }, {
You can’t perform that action at this time.
0 commit comments