home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************
- ** C A L C . H **
- **----------------------------------------------------------------------**
- ** Headerfile for CALC.DLL (a calculator for mathematical **
- ** expressions in stringform) **
- ** **
- ** **
- ** (c) 1995 by CIK - Uni Paderborn (Germany) **
- ** written by Karsten Jakuschona / Guido Ahle **
- ** **
- ** **
- ** for further information see CALC.TXT **
- ** **
- *************************************************************************/
-
- #define CERR_OK 0 /* No Error */
- #define CERR_UNBALAN 1 /* Not allowed parenthesis */
- #define CERR_UNKNOWN 2 /* Undefined variable */
- #define CERR_DOMAIN 3 /* Out of domain area */
- #define CERR_NOARG 4 /* Function without arguments */
- #define CERR_MAXVARS 5 /* No further variables available */
- #define CERR_SYNTAX 6 /* Syntax error */
- #define CERR_NUMARGS 7 /* Not enough arguments defined */
- #define CERR_DIVZERO 8 /* Division by zero */
- #define CERR_EMPTY 9 /* Undefined expresion */
- #define CERR_BADFUNC 10 /* Undefined function */
-
-
-
- /* function prototype */
- // export ordinal no.: @1 (placed in modul definition file)
- int _far _pascal _export _loadds ComputeString( char far *, double far * );