home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BQUERY.H -- Header file for C TOOLS PLUS DOS Query Functions
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1986
- *
- * Version 3.02 March 18, 1987
- * Changed definition of IBM_?? constants for Lattice C.
- *
- **/
-
- #ifndef DEF_BQUERY /* Prevent redefinition. */
-
- #include <butility.h>
-
- extern char b_pcmodel; /* IBM PC Model Code */
- /* Possible values: */
-
- #if LAT300
- #define IBM_PC '\377'
- #define IBM_XT '\376' /* PC-XT or Portable PC */
- #define IBM_JR '\375'
- #define IBM_AT '\374'
- #define IBM_CV '\371' /* PC Convertible */
- #else
- #define IBM_PC ((char) 0xff)
- #define IBM_XT ((char) 0xfe) /* PC-XT or Portable PC */
- #define IBM_JR ((char) 0xfd)
- #define IBM_AT ((char) 0xfc)
- #define IBM_CV ((char) 0xf9) /* PC Convertible */
- #endif
-
- typedef struct /* MSG_PAIR: paired messages */
- { /* and message numbers. */
- int msgnum;
- char *pmsg;
- } MSG_PAIR;
-
- extern MSG_PAIR b_ermsgs[]; /* Error messages corresponding */
- /* to DOS error codes (used by */
- /* QYERROR). */
-
- /* Constants for QYCTLBRK: */
- /* */
- #define CBRK_SET 1 /* Set CTRL-BREAK state. */
- /* */
- #define CBRK_GET 0 /* Return CTRL-BREAK state. */
- /* */
- #define CBRK_ON 1 /* Check CTRL-BREAK at every */
- /* DOS call. */
- /* */
- #define CBRK_OFF 0 /* Check CTRL-BREAK only when */
- /* accessing standard input, */
- /* output, print, or auxiliary */
- /* device. */
-
- /* Constants for QYVERIFY: */
- /* */
- #define VER_SET 1 /* Set VERIFY state. */
- /* */
- #define VER_GET 0 /* Return VERIFY state. */
- /* */
- #define VER_ON 1 /* Check every disk write. */
- /* */
- #define VER_OFF 0 /* Perform no extra */
- /* verification of disk writes. */
-
- typedef struct /* COUNTRY_INFO: national character */
- { /* set and format information. */
- int dfmt; /* Date format: */
- /* 0 = USA, 1 = Europe, 2 = Japan */
- char csym[5]; /* String containing currency symbol */
- char thsep[2]; /* String containing thousands separator*/
- char decsep[2]; /* String containing decimal separator */
- char datsep[2]; /* String containing date separator */
- char timsep[2]; /* String containing time separator */
- char cfmt; /* Currency format */
- char cprec; /* Number of significant digits in */
- /* fractional portion of currency */
- char tfmt; /* Time format: 0 if 12 hours, 1 if 24 */
- ADS cmap; /* Addr of case map conversion function */
- char lsep[2]; /* String containing data list separator*/
- char reserved[8]; /* Reserved by DOS */
- } COUNTRY_INFO;
-
- /* Function declarations */
-
- char qymodel(void); /* Return IBM PC model code */
- /* */
- int qydosver(int *); /* Return DOS version number */
- /* */
- int qysetdat(int,int,int); /* Set the system date */
- /* */
- int qyretdat(int *,int *,int *); /* Return the system date */
- /* */
- int qysettim(int,int,int,int); /* Set the system time */
- /* */
- int qyrettim(int *,int *, /* Return the system time */
- int *,int *); /* */
- /* */
- long qydisksp(int,unsigned *, /* Return disk space allocation */
- unsigned *,unsigned *,unsigned *);/* */
- /* */
- int qygcoun(unsigned *, /* Return country information */
- COUNTRY_INFO *); /* */
- /* */
- int qyscoun(unsigned); /* Set country code */
- /* */
- char casemap(char,ADS *); /* Fold character to upper case */
- /* in national style. */
- /* */
- int qyctlbrk(int,int); /* Set or return state of DOS */
- /* CTRL-BREAK checking. */
- /* */
- int qyverify(int,int); /* Set or return DOS VERIFY */
- /* state. */
- /* */
- int qyerror(int *,char **, /* Return error text and DOS */
- int *,int *,int *); /* error information. */
-
-
- #define DEF_BQUERY 1 /* Prevent second reading of */
- /* these definitions. */
-
- #endif /* Ends "#ifndef DEF_BQUERY" */