home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ctcoll95.zip / BASTELST / PAPI020.ZIP / TYPES.H < prev   
Text File  |  1993-10-06  |  297b  |  18 lines

  1. typedef    unsigned long    dword;
  2. typedef    unsigned int    word;
  3. typedef    unsigned char    byte;
  4.  
  5. typedef    void interrupt    (*InterruptPtr)(void);
  6.  
  7. typedef    enum
  8.     {
  9.     FALSE,
  10.     TRUE
  11.     } bool;
  12.  
  13. #define null    ((void far *) 0)
  14. #define HZ    18
  15.  
  16. typedef enum {DISCON, ISDISCON, DIAL, CALLED, CONNECT, IDLE, ACTIVE} io_state;
  17.  
  18.