19 lines
620 B
C
19 lines
620 B
C
/*
|
|
* mg_h_0012.h - 전문게이트웨이 고정길이 전문 레이아웃 (positional, 재배치 금지)
|
|
*/
|
|
#ifndef MG_H_0012_H
|
|
#define MG_H_0012_H
|
|
|
|
typedef struct {
|
|
char msg_type[4]; /* 전문구분 4 */
|
|
char merch_id[15]; /* 가맹점번호 15 */
|
|
char key[9]; /* 처리키 9 */
|
|
char amount[12]; /* 금액 12 zero-pad */
|
|
char biz_date[8]; /* 영업일 8 */
|
|
char resp_code[4]; /* 응답코드 4 */
|
|
char filler[20]; /* 예비 20 */
|
|
} mg_h_0012_msg_t;
|
|
|
|
#define MG_H_0012_MSG_LEN ((int)sizeof(mg_h_0012_msg_t))
|
|
|
|
#endif /* MG_H_0012_H */
|