home *** CD-ROM | disk | FTP | other *** search
-
- /*
- ** OPSTYP.H: Type declarations to allow OPS83 types to be used in
- ** C programs. The declarations in this file are machine-dependent;
- ** the declarations below are for OPS83 running on PC's.
- **
- ** It is important to remember that OPS83 passes arguments by reference
- ** and not value. As a result, formal parameters in C routines are
- ** generally declared type pointer to X rather than type X.
- */
-
- typedef int opsInteger; /* OPS83 integers */
- typedef int opsSymbol; /* OPS83 symbols */
- typedef char opsChar; /* OPS83 characters */
- typedef char opsLogical; /* OPS83 logicals */
- typedef double opsReal; /* OPS83 reals */
- typedef char opsName[128]; /* OPS83 names */
-