Changeset 5523 for trunk/tools/wrc/wrc.h
- Timestamp:
- Apr 16, 2001, 7:12:53 PM (25 years ago)
- File:
-
- 1 edited
-
trunk/tools/wrc/wrc.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/wrc/wrc.h
r3426 r5523 13 13 #endif 14 14 15 //ifdef __WIN32OS2__ 16 #define strcasecmp stricmp 15 #include <time.h> /* For time_t */ 17 16 18 #define WRC_VERSION "1.0.18" 19 #define WRC_RELEASEDATE "(28-Dec-1999)" 20 #define WRC_FULLVERSION WRC_VERSION " " WRC_RELEASEDATE 17 #define WRC_MAJOR_VERSION 1 18 #define WRC_MINOR_VERSION 1 19 #define WRC_MICRO_VERSION 9 20 #define WRC_RELEASEDATE "(31-Dec-2000)" 21 21 22 /* Only used in heavy debugging sessions */ 23 #define HEAPCHECK() 22 #define WRC_STRINGIZE(a) #a 23 #define WRC_EXP_STRINGIZE(a) WRC_STRINGIZE(a) 24 #define WRC_VERSIONIZE(a,b,c) WRC_STRINGIZE(a) "." WRC_STRINGIZE(b) "." WRC_STRINGIZE(c) 25 #define WRC_VERSION WRC_VERSIONIZE(WRC_MAJOR_VERSION, WRC_MINOR_VERSION, WRC_MICRO_VERSION) 26 #define WRC_FULLVERSION WRC_VERSION " " WRC_RELEASEDATE 27 28 #ifndef MAX 29 #define MAX(a,b) ((a) > (b) ? (a) : (b)) 30 #endif 24 31 25 32 /* From wrc.c */ … … 29 36 #define DEBUGLEVEL_DUMP 0x0002 30 37 #define DEBUGLEVEL_TRACE 0x0004 38 #define DEBUGLEVEL_PPMSG 0x0008 39 #define DEBUGLEVEL_PPLEX 0x0010 40 #define DEBUGLEVEL_PPTRACE 0x0020 31 41 32 42 extern int win32; … … 47 57 extern int auto_register; 48 58 extern int leave_case; 59 extern int byteorder; 60 extern int preprocess_only; 61 extern int no_preprocess; 62 extern int remap; 49 63 50 64 extern char *prefix; … … 53 67 extern char *header_name; 54 68 extern char *cmdline; 69 extern time_t now; 70 71 extern int line_number; 72 extern int char_number; 55 73 56 74 extern resource_t *resource_top;
Note:
See TracChangeset
for help on using the changeset viewer.
