13 lines
374 B
C
13 lines
374 B
C
#pragma once
|
|
|
|
#define NO_ERROR 0x00000000
|
|
#define ERR_NO_MEM 0x00000001
|
|
#define ERR_UNREACHABLE 0x00000002
|
|
#define ERR_CONVERSION 0x00000003
|
|
#define ERR_OUT_OF_BOUND 0x00000004
|
|
#define ERR_INVALID_OP 0x00000005
|
|
#define ERR_INVALID_MEM 0x00000006
|
|
#define ERR_NOT_EXIST 0x00000007
|
|
#define ERR_IO_FAILED 0x00000008
|
|
#define ERR_ADMINKILL 0x00114514
|