Move functions and API needed by the plugins to the src_common directory

This commit is contained in:
Francois Beutin
2024-01-15 19:37:36 +01:00
parent 294f88195b
commit 39b02b82e5
11 changed files with 10 additions and 10 deletions

9
src_common/extra_info.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include "tokens.h"
#include "nft.h"
typedef union extraInfo_t {
tokenDefinition_t token;
nftInfo_t nft;
} extraInfo_t;