home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 3 / 3066 / xkal.h < prev   
Encoding:
C/C++ Source or Header  |  1991-03-15  |  850 b   |  34 lines

  1. /*
  2.  *    xkal.h : Global decls for X, widgets, and other stuff
  3.  *
  4.  *    George Ferguson, ferguson@cs.rochester.edu, 27 Oct 1990.
  5.  *    Version 1.1 - 27 Feb 1991.
  6.  *
  7.  *    $Id: xkal.h,v 2.1 91/02/28 11:21:45 ferguson Exp $
  8.  *
  9.  */
  10. #ifndef XKAL_H
  11. #define XKAL_H
  12.  
  13. extern Display *display;
  14. extern Screen *screen;
  15. extern Window root;
  16. extern GC dateGC1,dateGC2,dateGC3,dateGC12,emptyGC,*shadeGC;
  17.  
  18. extern XtAppContext app_con;
  19. extern Widget toplevel;
  20.  
  21. extern char *program;
  22. extern int currentDay,currentMon,currentYear;
  23. extern int mainDay,mainMon,mainYear;
  24. extern int appointsChanged;
  25. extern XtIntervalId timeoutId;
  26.  
  27. extern int main();
  28. extern void quit(),quit_nosave(),save(),next(),prev(),today(),setNumMonths();
  29. extern void focusThisItem(), focusNoItem(), focusNextItem(), focusPrevItem();
  30. extern void escapeToSystem();
  31. extern void timeoutProc();
  32.  
  33. #endif /* XKAL_H */
  34.