You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
281 B
21 lines
281 B
10 years ago
|
#include <stddef.h>
|
||
10 years ago
|
#include <stdint.h>
|
||
10 years ago
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
10 years ago
|
typedef struct evmjit_result
|
||
|
{
|
||
|
int32_t returnCode;
|
||
|
uint64_t returnDataSize;
|
||
|
void* returnData;
|
||
|
|
||
|
} evmjit_result;
|
||
|
|
||
|
evmjit_result evmjit_run(void* _data, void* _env);
|
||
10 years ago
|
|
||
10 years ago
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|