tt.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /******************************************************************************
  2. *
  3. * project name: TIGCC Tools Suite
  4. * file name: tt.h
  5. * initial date: 13/08/2000
  6. * author: thomas.nussbaumer@gmx.net
  7. * description: generic definitions for TIGCC Tools Suite
  8. *
  9. ******************************************************************************/
  10. /*
  11. This file is part of the TIGCC Tools Suite.
  12. This file is free software; you can redistribute it and/or
  13. modify it under the terms of the GNU Lesser General Public
  14. License as published by the Free Software Foundation; either
  15. version 2.1 of the License, or (at your option) any later version.
  16. As a special exception, UNMODIFIED copies of some TIGCC Tools Suite utilities
  17. may also be redistributed or sold without source code, for any purpose. (The
  18. Lesser General Public License restrictions do apply in other respects; for
  19. example, they cover modification of the program.) Please refer to the main
  20. source file for the individual utility as to whether this is the case for a
  21. particular tool. This exception notice must be removed on modified copies of
  22. this file.
  23. This program is distributed in the hope that it will be useful,
  24. but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  26. Lesser General Public License for more details.
  27. You should have received a copy of the GNU Lesser General Public
  28. License along with this library; if not, write to the Free Software
  29. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  30. */
  31. #ifndef __TT_H__
  32. #define __TT_H__
  33. #define CALC_TI89 0
  34. #define CALC_TI92P 1
  35. #define SIGNATURE_TI89 "**TI89**"
  36. #define SIGNATURE_TI92P "**TI92P*"
  37. #define DEFAULT_FOLDER "main"
  38. #define DEFAULT_ITEMS_PER_LINE 10
  39. #define USAGE_OUT stdout
  40. #endif
  41. //#############################################################################
  42. //###################### NO MORE FAKES BEYOND THIS LINE #######################
  43. //#############################################################################
  44. //
  45. //=============================================================================
  46. // Revision History
  47. //=============================================================================
  48. //
  49. // Revision 1.3 2000/08/23 20:29:43 Thomas Nussbaumer
  50. // added a 'P' to the TI92p definitions
  51. //
  52. // Revision 1.2 2000/08/23 01:04:41 Thomas Nussbaumer
  53. // corrected signature of TI92p
  54. //
  55. // Revision 1.1 2000/08/13 20:24:16 Thomas Nussbaumer
  56. // initial version
  57. //
  58. //
  59. //
  60. //