home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
zfamily.zip
/
zfamily
/
ZISFUNCS
/
SAMPLE
/
TSTTYPES.H
< prev
next >
Wrap
Text File
|
1993-09-01
|
2KB
|
60 lines
/*
** /----------------------------------------------------------------------\
** | IBM Z Family Reusable Libraries/2 (5641-504) |
** |----------------------------------------------------------------------|
** | (C) Copyright International Business Machines Corporation 1993, 1994 |
** |----------------------------------------------------------------------|
** | DISCLAIMER OF WARRANTIES |
** | ------------------------ |
** | The following code is sample code created by IBM Corporation. |
** | Such a code is provided to you solely for the purpose of assisting |
** | you in the development of your applications. The code is provided |
** | "AS IS", without warranty of any kind. IBM shall not be liable for |
** | any damages arising out of your use of the following code, even if |
** | they have been advised of the possibility of such damages. | *
** \----------------------------------------------------------------------/
**
** Header : TSTTYPES.H
** Author : Alessandro Cavallini (CAVALLI at ROMEPPC)
** Pino Venturella (VENTUREL at ROMEPPC)
** Created : 06 Jul 1992
** Updated : 31 Aug 1993
** Version : 3.12
** Content : Type definition for the ZIS test program
**
*/
#ifndef TSTTYPES
#define TSTTYPES 0
/*
** Type definition for a LIST
*/
typedef struct _list
{
int size ; // Number of element
int dim ; // Lenght of each element in the list
PSZ psz ; // Pointer to the first element
}
LIST, *PLIST ;
/*
** Type definition for a character entry field
*/
typedef struct _efield
{
int dim ; // Lenght of field
PSZ psz ; // Pointer to the field
}
FIELD, *PFIELD ;
/*
** Type definition for global information
*/
typedef struct _global
{
HAB *data ;
}
GLBL, *PGLBL ;
#endif