2018-04-17 09:02:00 +00:00
|
|
|
/* EVMC: Ethereum Client-VM Connector API.
|
2019-04-24 14:12:13 +00:00
|
|
|
* Copyright 2018-2019 The EVMC Authors.
|
|
|
|
* Licensed under the Apache License, Version 2.0.
|
2018-04-17 09:02:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-04-18 14:22:24 +00:00
|
|
|
#include <evmc/evmc.h>
|
2018-06-25 16:39:34 +00:00
|
|
|
#include <evmc/utils.h>
|
2018-04-17 09:02:00 +00:00
|
|
|
|
2019-01-22 12:08:02 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-04-17 09:02:00 +00:00
|
|
|
/**
|
|
|
|
* Creates EVMC Example VM.
|
|
|
|
*/
|
2018-08-30 16:27:44 +00:00
|
|
|
EVMC_EXPORT struct evmc_instance* evmc_create_example_vm(void);
|
2019-01-22 12:08:02 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|