23 lines
228 B
C
23 lines
228 B
C
|
#ifndef IRCODES_H
|
||
|
#define IRCODES_H
|
||
|
|
||
|
enum
|
||
|
{
|
||
|
IRF_SIZED = 1,
|
||
|
};
|
||
|
|
||
|
struct ir_data
|
||
|
{
|
||
|
const char* name;
|
||
|
int flags;
|
||
|
};
|
||
|
|
||
|
extern const struct ir_data ir_data[];
|
||
|
|
||
|
#include "ircodes-dyn.h"
|
||
|
|
||
|
#endif
|
||
|
|
||
|
/* vim: set sw=4 ts=4 expandtab : */
|
||
|
|