MainTree/inc-c/context.h

16 lines
262 B
C
Raw Permalink 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-registry.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