Cthulhu  0.2.10
Cthulhu compiler collection
schema.inc
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #ifndef SCHEMA_STATUS
4 # define SCHEMA_STATUS(id, name)
5 #endif
6 
7 SCHEMA_STATUS(eSchemaStatusOk, "ok")
8 
9 #undef SCHEMA_STATUS
10 
11 #ifndef SCHEMA_TYPE
12 # define SCHEMA_TYPE(id, name)
13 #endif
14 
15 SCHEMA_TYPE(eSchemaTypeString, "string")
16 SCHEMA_TYPE(eSchemaTypePointer, "pointer")
17 SCHEMA_TYPE(eSchemaTypeStruct, "struct")
18 SCHEMA_TYPE(eSchemaTypeUnion, "union")
19 
20 #undef SCHEMA_TYPE
#define SCHEMA_STATUS(id, name)
Definition: schema.inc:4
#define SCHEMA_TYPE(id, name)
Definition: schema.inc:12