dt.h

来自「商业银行前置系统」· C头文件 代码 · 共 59 行

H
59
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?