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