00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef INCLUDE_RSRC_ERRORCODE
00012 #define INCLUDE_RSRC_ERRORCODE
00013
00014 #define ERROR_C_NOERROR 0
00015 #define ERROR_C_UNKNOW 999
00016
00017 #define ERROR_C_FILE 100
00018 #define ERROR_C_CONF_FILE 101
00019 #define ERROR_C_DATA_FILE 102
00020 #define ERROR_C_SYS_FILE 103
00021
00022 #define ERROR_C_CONNECT 200
00023 #define ERROR_C_INIT_CONNECT 201
00024 #define ERROR_C_BIND_CONNECT 202
00025 #define ERROR_C_URL_NOTFOUND 203
00026 #define ERROR_C_LISTEN 204
00027 #define ERROR_C_SEND 210
00028 #define ERROR_C_RECEIVE 211
00029 #define ERROR_C_SSLINIT 220
00030 #define ERROR_C_SSLCTXINIT 221
00031 #define ERROR_C_SSLKEY 222
00032 #define ERROR_C_SSLCERTIF 223
00033 #define ERROR_C_SSLCHECK 224
00034 #define ERROR_C_SSLCONNECT 225
00035 #define ERROR_C_NOSSL 226
00036
00037 #define ERROR_C_THREAD 310
00038 #define ERROR_C_MEMORY 320
00039 #define ERROR_C_ALREADY_START 331
00040 #define ERROR_C_ALREADY_STOP 332
00041
00042 #define ERROR_C_PASS 400
00043 #define ERROR_C_SYNTAX 410
00044 #define ERROR_C_PARAMETER 420
00045
00046 #define ERROR_C_DLL 500
00047 #define ERROR_C_LOAD_DLL 501
00048 #define ERROR_C_UNLOAD_DLL 502
00049 #define ERROR_C_FUNCTION 510
00050 #define ERROR_C_IMPORT_FUNC 511
00051 #define ERROR_C_NO_FUNC 512
00052
00053 #endif