]>
Commit | Line | Data |
---|---|---|
5d9f0ecf SC |
1 | |
2 | #ifndef NO_LISTING | |
3 | #define LISTING_NEWLINE() if (listing) listing_newline(input_line_pointer); | |
4 | #else | |
5 | #define LISTING_NEWLINE() | |
6 | #endif | |
7 | void EXFUN(listing_title,(unsigned int depth)); | |
8 | void EXFUN(listing_list,()); | |
9 | void EXFUN(listing_flags,()); | |
10 | void EXFUN(listing_psize,()); | |
11 | void EXFUN(listing_eject,()); | |
12 | void EXFUN(listing_width,(unsigned int x)); | |
8b228fe9 RP |
13 | void EXFUN(listing_source_line,(unsigned int)); |
14 | void EXFUN(listing_source_file,(char *)); | |
5d9f0ecf SC |
15 | |
16 | #define LISTING_LISTING 1 | |
17 | #define LISTING_SYMBOLS 2 | |
18 | #define LISTING_NOFORM 4 | |
8b228fe9 RP |
19 | #define LISTING_HLL 8 |
20 | #define LISTING_NODEBUG 16 | |
5d9f0ecf | 21 | |
8b228fe9 | 22 | #define LISTING_DEFAULT (LISTING_LISTING | LISTING_HLL | LISTING_SYMBOLS) |
5d9f0ecf | 23 | |
8b228fe9 | 24 | /* end of listing.h */ |