home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume4 / xgo / part04 / xvar.c < prev   
C/C++ Source or Header  |  1988-04-08  |  1KB  |  44 lines

  1. /*
  2.  * $Header: xvar.c,v 1.3 88/02/19 13:49:52 hale Exp $
  3.  */
  4.  
  5. /*
  6.  
  7.         Copyright 1987      Greg Hale
  8.  
  9. Permission to use, copy, modify, and distribute this
  10. software and its documentation for any purpose and without
  11. fee is hereby granted, provided that the above copyright
  12. notice appear in all copies and that both that copyright
  13. notice and this permission notice appear in supporting
  14. documentation.  No representations are made about the
  15. suitability of this software for any purpose.  It is
  16. provided "as is" without express or implied warranty.
  17.  
  18. */
  19.  
  20.  
  21. #include <X/Xlib.h>
  22.  
  23. Window Wboard,Wtalk,Wtalk1,Wmesg,Waccept,Wdecline,
  24.     Wscore,Wquit,Wtally,Wpass,Wcancel,Wplay,
  25.     Wexit,Wswitch,Wshow,Wresign,Wsave, Wload,
  26.     Wclear;
  27. FontInfo *fi;
  28. Display *dis;
  29.  
  30. int turn=0;
  31. /*
  32.  * $Log:    xvar.c,v $
  33.  * Revision 1.3  88/02/19  13:49:52  hale
  34.  * Added io changes for loading games.
  35.  * Load game is cleaned up.  Variable board
  36.  * sizes and formats available in save game
  37.  * as well as printed comments.
  38.  * 
  39.  * Revision 1.2  88/02/13  12:55:27  hale
  40.  * new window variables.
  41.  * 
  42.  */
  43.  
  44.