mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 22:50:43 +00:00
62451da52c
a new parser state. The is now a warning when a 2 byte integer is larger than 16 bit (and is truncated). - Fixed a couple of cosmetic things in the DLGINIT stuff so that dumping of this type will work as expected. - Added generalized language/version/characteristics support to the DLGINIT resource type. Ulrich Czekalla <ulrichc@corel.ca> - Added support for DLGINIT resource-type. - Added string continuation and embedded quoting. - Added numeric IDs for icons in controls. Eric Pouech <Eric.Pouech@wanadoo.fr> - Bugfix: Distinguish between 2 and 4 byte integers in RCDATA.
57 lines
1.1 KiB
C
57 lines
1.1 KiB
C
/*
|
|
* Main definitions and externals
|
|
*
|
|
* Copyright 1998 Bertho A. Stultiens (BS)
|
|
*
|
|
*/
|
|
|
|
#ifndef __WRC_WRC_H
|
|
#define __WRC_WRC_H
|
|
|
|
#ifndef __WRC_WRCTYPES_H
|
|
#include "wrctypes.h"
|
|
#endif
|
|
|
|
#define WRC_VERSION "1.0.12"
|
|
#define WRC_RELEASEDATE "(18-Jul-1999)"
|
|
#define WRC_FULLVERSION WRC_VERSION " " WRC_RELEASEDATE
|
|
|
|
/* Only used in heavy debugging sessions */
|
|
#define HEAPCHECK()
|
|
|
|
/* From wrc.c */
|
|
extern int debuglevel;
|
|
#define DEBUGLEVEL_NONE 0x0000
|
|
#define DEBUGLEVEL_CHAT 0x0001
|
|
#define DEBUGLEVEL_DUMP 0x0002
|
|
#define DEBUGLEVEL_TRACE 0x0004
|
|
|
|
extern int win32;
|
|
extern int constant;
|
|
extern int create_res;
|
|
extern int extensions;
|
|
extern int binary;
|
|
extern int create_header;
|
|
extern int create_dir;
|
|
extern int global;
|
|
extern int indirect;
|
|
extern int indirect_only;
|
|
extern int alignment;
|
|
extern int alignment_pwr;
|
|
extern int create_s;
|
|
extern DWORD codepage;
|
|
extern int pedantic;
|
|
extern int auto_register;
|
|
extern int leave_case;
|
|
|
|
extern char *prefix;
|
|
extern char *output_name;
|
|
extern char *input_name;
|
|
extern char *header_name;
|
|
extern char *cmdline;
|
|
|
|
extern resource_t *resource_top;
|
|
extern language_t *currentlanguage;
|
|
|
|
#endif
|