CONFIG.H 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
  3. SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
  4. END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
  5. ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
  6. IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
  7. SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
  8. FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
  9. CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
  10. AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
  11. COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
  12. */
  13. /*
  14. * $Source: f:/miner/source/main/rcs/config.h $
  15. * $Revision: 2.0 $
  16. * $Author: john $
  17. * $Date: 1995/02/27 11:32:48 $
  18. *
  19. * prototype definitions for descent.cfg reading/writing
  20. *
  21. * $Log: config.h $
  22. * Revision 2.0 1995/02/27 11:32:48 john
  23. * New version 2.0, which has no anonymous unions, builds with
  24. * Watcom 10.0, and doesn't require parsing BITMAPS.TBL.
  25. *
  26. * Revision 1.4 1995/02/11 16:20:06 john
  27. * Added code to make the default mission be the one last played.
  28. *
  29. * Revision 1.3 1994/12/08 10:01:41 john
  30. * Changed the way the player callsign stuff works.
  31. *
  32. * Revision 1.2 1994/11/14 17:53:17 allender
  33. * extern definitions for ReadConfigFile and WriteConfigFile
  34. *
  35. * Revision 1.1 1994/11/14 16:56:17 allender
  36. * Initial revision
  37. *
  38. *
  39. */
  40. #ifndef _CONFIG_H
  41. #define _CONFIG_H
  42. #include "player.h"
  43. extern int ReadConfigFile(void);
  44. extern int WriteConfigFile(void);
  45. extern char config_last_player[CALLSIGN_LEN+1];
  46. extern char config_last_mission[];
  47. #endif
  48.