mirror of
https://github.com/Museum-of-Art-and-Digital-Entertainment/macross.git
synced 2024-11-23 02:33:48 +00:00
13 lines
441 B
C
13 lines
441 B
C
#ifndef STRUCT_SEMANTICS_H_
|
|
#define STRUCT_SEMANTICS_H_
|
|
|
|
#include "macrossTypes.h"
|
|
|
|
void putStructFixups(int base, fixupListType *fixups);
|
|
void putStructReferences(int base, expressionReferenceListType *references);
|
|
void instantiateStruct(structStatementBodyType *structStatement);
|
|
structInstanceType *assembleStructDefinitionBody(structBodyType *structBody);
|
|
void assembleStructDefinition(structStatementBodyType *structStatement);
|
|
|
|
#endif
|