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/cm_h_0005.h

19 lines
605 B
C

/*
* cm_h_0005.h - 공통 고정길이 전문 레이아웃 (positional, 재배치 금지)
*/
#ifndef CM_H_0005_H
#define CM_H_0005_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 */
} cm_h_0005_msg_t;
#define CM_H_0005_MSG_LEN ((int)sizeof(cm_h_0005_msg_t))
#endif /* CM_H_0005_H */