evmc/examples/example_host.h

19 lines
345 B
C
Raw Normal View History

2018-08-30 15:38:14 +00:00
/* EVMC: Ethereum Client-VM Connector API.
* Copyright 2016-2019 The EVMC Authors.
2019-03-15 00:25:36 +00:00
* Licensed under the Apache License, Version 2.0.
2018-08-30 15:38:14 +00:00
*/
#include <evmc/evmc.h>
#if __cplusplus
extern "C" {
#endif
struct evmc_context* example_host_create_context();
void example_host_destroy_context(struct evmc_context* context);
#if __cplusplus
}
#endif