20 lines
499 B
C
20 lines
499 B
C
/*
|
|
* cl_h_0001.h - 마감 코드/상수 테이블
|
|
*/
|
|
#ifndef CL_H_0001_H
|
|
#define CL_H_0001_H
|
|
|
|
#define CL_H_0001_RC_OK 0
|
|
#define CL_H_0001_RC_RETRY 1
|
|
#define CL_H_0001_RC_SKIP 2
|
|
#define CL_H_0001_RC_ERROR 9
|
|
|
|
#define CL_H_0001_LIMIT_DAILY 100000000L
|
|
#define CL_H_0001_LIMIT_SINGLE 50000000L
|
|
#define CL_H_0001_FEE_RATE_BP 250 /* 2.50% */
|
|
|
|
#define CL_H_0001_CHAN_ONLINE "01"
|
|
#define CL_H_0001_CHAN_BATCH "02"
|
|
#define CL_H_0001_CHAN_RECON "03"
|
|
|
|
#endif /* CL_H_0001_H */
|