MainTree/inc-c/context.h

16 lines
253 B
C
Raw Normal View History

2024-02-20 06:35:53 +00:00
#ifndef MT_CONTEXT_H
#define MT_CONTEXT_H
#include <stdint.h>
2024-02-20 06:35:53 +00:00
#include <shadow-tag.h>
#include <shadow.h>
2024-02-20 06:35:53 +00:00
typedef struct MtContext
{
MtShadowTagSystem shadow_tag_system;
MtShadowRegistry *shadow_registry;
2024-02-20 06:35:53 +00:00
} MtContext;
#endif // MT_CONTEXT_H