mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-13 07:58:04 +00:00
25 lines
407 B
C
25 lines
407 B
C
|
#ifndef _RE2C_GLOBALS_
|
||
|
#define _RE2C_GLOBALS_
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "src/conf/opt.h"
|
||
|
#include "src/conf/warn.h"
|
||
|
#include "src/util/c99_stdint.h"
|
||
|
|
||
|
namespace re2c
|
||
|
{
|
||
|
|
||
|
extern bool bUsedYYBitmap;
|
||
|
extern bool bWroteGetState;
|
||
|
extern bool bWroteCondCheck;
|
||
|
extern uint32_t last_fill_index;
|
||
|
extern std::string yySetupRule;
|
||
|
|
||
|
extern Opt opts;
|
||
|
extern Warn warn;
|
||
|
|
||
|
} // end namespace re2c
|
||
|
|
||
|
#endif // _RE2C_GLOBALS_
|