Fabcoin Core  0.16.2
P2P Digital Currency
evmjit.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <evm.h>
4 
5 #ifdef _MSC_VER
6 #ifdef evmjit_EXPORTS
7 #define EXPORT __declspec(dllexport)
8 #else
9 #define EXPORT __declspec(dllimport)
10 #endif
11 
12 #else
13 #define EXPORT __attribute__ ((visibility ("default")))
14 #endif
15 
16 #if __cplusplus
17 extern "C" {
18 #endif
19 
23 EXPORT struct evm_factory evmjit_get_factory(void);
24 
25 #if __cplusplus
26 }
27 #endif
#define EXPORT
Definition: evmjit.h:13
The EVM instance factory.
Definition: evm.h:455