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