home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / TIMEXSRC.ZIP / BA_DATA.C next >
C/C++ Source or Header  |  1990-03-29  |  1KB  |  31 lines

  1. /* ba_data.c -- Global data for TIMEXBA
  2.  
  3.     Febrbary 1990    Mark E. Mallett, Personal Workstation Magazine
  4.  
  5. This contains global data used in TIMEXBA
  6.  
  7.  
  8. */
  9.  
  10. #define INCL_BASE
  11.  
  12. #include <stdio.h>
  13. #include <sys/types.h>
  14. #include <os2.h>
  15.  
  16. #include "timex.h"
  17. #include "ba_timex.h"
  18. #include "errhand.h"
  19.  
  20.         char            *Dbfname = DBFNAME; /* Database filename */
  21.         HSEM            Eventsem;       /* Semaphore for event list lock */
  22.         TID             Evtid;          /* Event thread ID */
  23.         char            *Logfname = LOGFNAME; /* Log filename */
  24.         PEVENT          *PendingL = NULL; /* Pending event list */
  25.         int             Priclass;       /* Priority class to run at */
  26.         int             Prival;         /* Priority value to run at */
  27.         char            *Rqpipe = REQPIPE;  /* Name of the request pipe */
  28.         HPIPE           RqpipeH;            /* Handle for request pipe */
  29.         ERRLIST         *Werdisp;       /* All-wild error dispatch list */
  30.         ERRLIST         *Werlist;       /* Condition list: all conditions */
  31.