[ Bottom of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]

Files Reference

fxconst.inc File

Purpose

Provides fxfer function constants for a Pascal file-transfer program.

Description

The /usr/include/fxconst.inc file contains the constants used in a programmatical Pascal file-transfer program. Each module that uses the Pascal file-transfer program must include the fxconst.inc file. The constants are for use with the Pascal program interface to the HCON File Transfer Program.

The following constants are for the f_flags variable:

FXC_UP          = 1;              /* `0001'x  */
FXC_DOWN        = 2;              /* `0002'x  */
FXC_TNL          = 4;              /* `0004'x  */
FXC_TCRLF       = 8;              /* `0008'x  */
FXC_REPL        = 16;             /* `0010'x  */
FXC_APPND       = 32;             /* `0020'x  */
FXC_QUEUE       = 64;             /* `0040'x  */
FXC_FIXED       = 128;            /* `0080'x  */
FXC_FIXED       = 256;            /* `0100'x  */
FXC_UNDEF       = 512;            /* `0200'x  */
FXC_TSO         = 1024;           /* `0400'x  */
FXC_CMS         = 2048;           /* `0800'x  */
FXC_CICS          = 4096;           /* `1000'x  */
FXC_VSE             = 8192;           /* `2000'x  */

The following constants are for the allocation variables:

FXC_TRACKS      = -1;             /* Tracks  */
FXC_CYLINDERS   = -2;             /* Cylinder */

Related Information

The cfxfer function, fxfer function, and g32_fxfer function.

[ Top of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]