Files
rosetta/toolchain/xpcg/type.h
Max Wash 26a49162e6 toolchain: replace ifc interface compiler with xpcg
xpcg is used to generate xpc interfaces
2026-03-10 19:12:14 +00:00

21 lines
246 B
C

#ifndef XPCG_TYPE_H_
#define XPCG_TYPE_H_
enum type_id {
TYPE_NONE,
TYPE_INT,
TYPE_SIZE,
TYPE_STRING,
TYPE_BUFFER,
TYPE_HANDLE,
TYPE_OTHER,
};
struct type {
enum type_id ty_id;
};
extern void type_print(const struct type *ty);
#endif