22 lines
477 B
C
22 lines
477 B
C
/*
|
|
* mg_h_0013.h - 전문게이트웨이 레코드/뷰 구조 정의
|
|
*/
|
|
#ifndef MG_H_0013_H
|
|
#define MG_H_0013_H
|
|
|
|
/* 전문게이트웨이 처리 뷰 레코드 */
|
|
typedef struct {
|
|
char key[16];
|
|
char merch_id[16];
|
|
long amount;
|
|
long fee;
|
|
char biz_date[9];
|
|
char status[2];
|
|
char reserved[16];
|
|
} mg_h_0013_view_t;
|
|
|
|
#define MG_H_0013_STATUS_OPEN "O"
|
|
#define MG_H_0013_STATUS_HOLD "H"
|
|
#define MG_H_0013_STATUS_CLOSE "C"
|
|
|
|
#endif /* MG_H_0013_H */
|