comparison lwlink/trunk/src/lwlink.h @ 112:a567dbb3f1d4

command line options
author lost
date Sat, 17 Jan 2009 16:55:53 +0000
parents
children c65fcec346cd
comparison
equal deleted inserted replaced
111:d92c9f230b8f 112:a567dbb3f1d4
1 /*
2 lwlink.h
3 Copyright © 2008 William Astle
4
5 This file is part of LWLINK.
6
7 LWLINK is free software: you can redistribute it and/or modify it under the
8 terms of the GNU General Public License as published by the Free Software
9 Foundation, either version 3 of the License, or (at your option) any later
10 version.
11
12 This program is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 more details.
16
17 You should have received a copy of the GNU General Public License along with
18 this program. If not, see <http://www.gnu.org/licenses/>.
19
20 Contains the main defs used by the linker
21 */
22
23
24 #ifndef __lwlink_h_seen__
25 #define __lwlink_h_seen__
26
27 #define OUTPUT_DECB 0 // DECB multirecord format
28 #define OUTPUT_RAW 1 // raw sequence of bytes
29
30 #ifndef __lwlink_c_seen__
31
32 extern int debug_level;
33 extern int outformat;
34 extern char *outfile;
35
36 #endif // __lwlink_c_seen__
37
38 #endif //__lwlink_h_seen__