ldmud/test/t-python/teststruct.c
Alexander Motzkau 52dc66d499 Add support for LPC type objects in Python
Fully support the LPC type system in Python, providing representations
for basic types (int, float, string, bytes), named (lightweight) object
types, concrete struct types and union types.
2022-10-10 23:38:01 +02:00

6 lines
100 B
C

/* Testing usage of struct types of an unloaded program. */
struct test_struct
{
int value;
};