mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-06 05:40:56 +00:00
- updaterevision for automated revision string generation - re2c as a prerequisite to use sc_man in the future - zipdir to automatically generate an engine resource file.
24 lines
665 B
C++
24 lines
665 B
C++
#ifndef _RE2C_CONF_MSG_
|
|
#define _RE2C_CONF_MSG_
|
|
|
|
#include <string>
|
|
|
|
#include "src/util/attribute.h"
|
|
#include "src/util/c99_stdint.h"
|
|
|
|
namespace re2c {
|
|
|
|
void error (const char * fmt, ...) RE2C_GXX_ATTRIBUTE ((format (printf, 1, 2)));
|
|
void error_encoding ();
|
|
void error_arg (const char * option);
|
|
void warning_start (uint32_t line, bool error);
|
|
void warning_end (const char * type, bool error);
|
|
void warning (const char * type, uint32_t line, bool error, const char * fmt, ...) RE2C_GXX_ATTRIBUTE ((format (printf, 4, 5)));
|
|
void usage ();
|
|
void vernum ();
|
|
void version ();
|
|
std::string incond (const std::string & cond);
|
|
|
|
} // namespace re2c
|
|
|
|
#endif // _RE2C_CONF_MSG_
|