home *** CD-ROM | disk | FTP | other *** search
/ MACD 4 / MACD4.iso / Emulatory / v2600 / source.lha / source / resource.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-27  |  842 b   |  32 lines

  1. /*****************************************************************************
  2.  
  3.    This file is part of x2600, the Atari 2600 Emulator
  4.    ===================================================
  5.    
  6.    Copyright 1996 Alex Hornby. For contributions see the file CREDITS.
  7.  
  8.    This software is distributed under the terms of the GNU General Public
  9.    License. This is free software with ABSOLUTELY NO WARRANTY.
  10.    
  11.    See the file COPYING for details.
  12.    
  13.    $Id: resource.h,v 1.6 1996/08/24 19:00:26 ahornby Exp $
  14. ******************************************************************************/
  15.  
  16. /*
  17.   The application resource data is defined here.
  18.   Make sure it matches with the code in display.c.
  19. */
  20.  
  21. #ifndef RESOURCE_H
  22. #define RESOURCE_H
  23.  
  24. #include <X11/Intrinsic.h>
  25.  
  26. extern struct App_data {
  27.     Bool mitshm;
  28.     Bool private;
  29. } app_data;
  30.  
  31. #endif
  32.