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.
20 lines
281 B
20 lines
281 B
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct evmjit_result
|
|
{
|
|
int32_t returnCode;
|
|
uint64_t returnDataSize;
|
|
void* returnData;
|
|
|
|
} evmjit_result;
|
|
|
|
evmjit_result evmjit_run(void* _data, void* _env);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|