This repository has been archived on 2026-07-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
acquire-core-full/app/include/lg_h_0003.h

19 lines
605 B
C

/*
* lg_h_0003.h - 원장 고정길이 전문 레이아웃 (positional, 재배치 금지)
*/
#ifndef LG_H_0003_H
#define LG_H_0003_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 */
} lg_h_0003_msg_t;
#define LG_H_0003_MSG_LEN ((int)sizeof(lg_h_0003_msg_t))
#endif /* LG_H_0003_H */