20 lines
499 B
C
20 lines
499 B
C
/*
|
|
* cm_h_0016.h - 공통 코드/상수 테이블
|
|
*/
|
|
#ifndef CM_H_0016_H
|
|
#define CM_H_0016_H
|
|
|
|
#define CM_H_0016_RC_OK 0
|
|
#define CM_H_0016_RC_RETRY 1
|
|
#define CM_H_0016_RC_SKIP 2
|
|
#define CM_H_0016_RC_ERROR 9
|
|
|
|
#define CM_H_0016_LIMIT_DAILY 100000000L
|
|
#define CM_H_0016_LIMIT_SINGLE 50000000L
|
|
#define CM_H_0016_FEE_RATE_BP 250 /* 2.50% */
|
|
|
|
#define CM_H_0016_CHAN_ONLINE "01"
|
|
#define CM_H_0016_CHAN_BATCH "02"
|
|
#define CM_H_0016_CHAN_RECON "03"
|
|
|
|
#endif /* CM_H_0016_H */
|