📄 dt.h
字号:
/*
* This is a part of the Application Preconsole
* - Channel Access - DT.
* Copyright (C) 2001-2001 ABC.SDC.
* All rights reserved.
*
* This source code is only intended as a supplement to the
* Application Preconsole Reference and related
* electronic documentation provided with the library.
* See these sources for detailed information regarding the
* Application Preconsole product.
*
* Update record:
* 2001-09-17 Chang Yong - create public declaration file
*/
#ifndef __DT_H__
#define __DT_H__
/*
* Transaction Input Area structure
*/
typedef struct tagTIASTRU
{
char szReqId[8 + 1];
char szReqSeqNo[12 + 1];
char szTransCode[4 + 1];
char szAccNo[19 + 1];
char szAccPwd[6 + 1];
char szPhoneNo[11 + 1];
char szCollectMon[6 + 1];
double dAmt;
} TIASTRU;
typedef TIASTRU * PTIASTRU;
typedef const TIASTRU CTIASTRU;
typedef const TIASTRU * PCTIASTRU;
/*
* Transaction Output Area structure
*/
typedef struct tagTOASTRU
{
char szRespCode[4 + 1];
double dBal;
double dPhoneCost;
} TOASTRU;
typedef TOASTRU * PTOASTRU;
typedef const TOASTRU CTOASTRU;
typedef const TOASTRU * PCTOASTRU;
#endif /* __DT_H__ */
/* End of this file */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -