Changeset 1308 for trunk/tigcc/tools/ttunpack.h
- Timestamp:
- 01/25/09 17:20:17 (3 years ago)
- Location:
- trunk/tigcc/tools
- Files:
-
- 1 added
- 1 moved
-
. (added)
-
ttunpack.h (moved) (moved from trunk/tigcc/ttpack/tt.h) (4 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tigcc/tools/ttunpack.h
- Property svn:executable deleted
r1307 r1308 1 1 /****************************************************************************** 2 2 * 3 * project name: TIGCC Tools Suite4 * file name: tt .h5 * initial date: 1 3/08/20006 * author: thomas.nussbaumer@gmx.net 7 * description: generic definitions for TIGCC Tools Suite8 * 3 * project name: GCC4TI Tools (formerly TIGCC Tools Suite) 4 * file name: ttunpack.h 5 * initial date: 14/08/2000 6 * author: thomas.nussbaumer@gmx.net 7 * description: defines of errorcodes of decompression routine and its 8 * declaration 9 9 ******************************************************************************/ 10 10 11 11 /* 12 This file is part of the TIGCC Tools Suite.12 This file is part of GCC4TI Tools and ExtGraph. 13 13 14 14 This file is free software; you can redistribute it and/or … … 17 17 version 2.1 of the License, or (at your option) any later version. 18 18 19 As a special exception, UNMODIFIED copies of some TIGCC Tools Suite utilities 20 may also be redistributed or sold without source code, for any purpose. (The 21 Lesser General Public License restrictions do apply in other respects; for 22 example, they cover modification of the program.) Please refer to the main 23 source file for the individual utility as to whether this is the case for a 24 particular tool. This exception notice must be removed on modified copies of 25 this file. 19 As a special exception, UNMODIFIED copies of ttunpack may also be 20 redistributed or sold without source code, for any purpose. (The Lesser 21 General Public License restrictions do apply in other respects; for example, 22 they cover modification of the program.) This exception notice must be 23 removed on modified copies of this file. 26 24 27 25 This program is distributed in the hope that it will be useful, … … 35 33 */ 36 34 37 #ifndef __TT _H__38 #define __TT _H__35 #ifndef __TTUNPACK_H__ 36 #define __TTUNPACK_H__ 39 37 40 #define CALC_TI89 0 41 #define CALC_TI92P 1 38 #define ERRPCK_OKAY 0 39 #define ERRPCK_NOESCFOUND 248 40 #define ERRPCK_ESCBITS 249 41 #define ERRPCK_MAXGAMMA 250 42 #define ERRPCK_EXTRALZP 251 43 #define ERRPCK_NOMAGIC 252 44 #define ERRPCK_OUTBUFOVERRUN 253 45 #define ERRPCK_LZPOSUNDERRUN 254 42 46 43 #define SIGNATURE_TI89 "**TI89**" 44 #define SIGNATURE_TI92P "**TI92P*" 45 46 #define DEFAULT_FOLDER "main" 47 48 #define DEFAULT_ITEMS_PER_LINE 10 47 int _tt_Decompress(unsigned char *src, unsigned char *dest); 48 #define UnPack _tt_Decompress 49 49 50 50 #endif 51 51 52 52 53 //############################################################################# … … 58 59 //============================================================================= 59 60 // 60 // Revision 1. 3 2000/08/23 20:29:43Thomas Nussbaumer61 // added a 'P' to the TI92p definitions61 // Revision 1.2 2000/08/20 15:26:21 Thomas Nussbaumer 62 // prefix of unpack routine (_tt_) corrected 62 63 // 63 // Revision 1.2 2000/08/23 01:04:41 Thomas Nussbaumer 64 // corrected signature of TI92p 65 // 66 // Revision 1.1 2000/08/13 20:24:16 Thomas Nussbaumer 64 // Revision 1.1 2000/08/14 22:49:57 Thomas Nussbaumer 67 65 // initial version 68 66 // 69 67 // 70 //71 //
Note: See TracChangeset
for help on using the changeset viewer.
