mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-23 20:41:04 +00:00
17 lines
210 B
C++
17 lines
210 B
C++
#ifndef _RE2C_PARSE_EXTOP_
|
|
#define _RE2C_PARSE_EXTOP_
|
|
|
|
#include "src/util/c99_stdint.h"
|
|
|
|
namespace re2c
|
|
{
|
|
|
|
struct ExtOp
|
|
{
|
|
uint32_t min;
|
|
uint32_t max;
|
|
};
|
|
|
|
} // end namespace re2c
|
|
|
|
#endif // _RE2C_PARSE_EXTOP_
|