feat: acquire-core full legacy C corpus (~2066 files, build-verified) + generator + inventory
This commit is contained in:
commit
b96cf702ee
2897 changed files with 264970 additions and 0 deletions
22
app/include/mg_h_0001.h
Normal file
22
app/include/mg_h_0001.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
/*
|
||||
* mg_h_0001.h - 전문게이트웨이 레코드/뷰 구조 정의
|
||||
*/
|
||||
#ifndef MG_H_0001_H
|
||||
#define MG_H_0001_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_0001_view_t;
|
||||
|
||||
#define MG_H_0001_STATUS_OPEN "O"
|
||||
#define MG_H_0001_STATUS_HOLD "H"
|
||||
#define MG_H_0001_STATUS_CLOSE "C"
|
||||
|
||||
#endif /* MG_H_0001_H */
|
||||
Reference in a new issue