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

22 lines
477 B
C

/*
* mg_h_0017.h - 전문게이트웨이 레코드/뷰 구조 정의
*/
#ifndef MG_H_0017_H
#define MG_H_0017_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_0017_view_t;
#define MG_H_0017_STATUS_OPEN "O"
#define MG_H_0017_STATUS_HOLD "H"
#define MG_H_0017_STATUS_CLOSE "C"
#endif /* MG_H_0017_H */