EVM-C: Use int istead of bool type

This commit is contained in:
Paweł Bylica 2016-08-23 11:55:06 +02:00
parent 091963ce09
commit 77326672fd
2 changed files with 8 additions and 9 deletions

View File

@ -39,11 +39,11 @@ EXPORT void evm_destroy(struct evm_instance* evm)
free(evm);
}
EXPORT bool evm_set_option(struct evm_instance* evm,
char const* name,
char const* value)
EXPORT int evm_set_option(struct evm_instance* evm,
char const* name,
char const* value)
{
return false;
return 0;
}
EXPORT struct evm_result evm_execute(struct evm_instance* instance,

View File

@ -16,7 +16,6 @@
#include <stdint.h> // Definition of int64_t, uint64_t.
#include <stddef.h> // Definition of size_t.
#include <stdbool.h> // Definition of bool.
/// Allow implementation to inject some additional information about function
/// linkage and/or symbol visibility in the output library.
@ -284,10 +283,10 @@ EXPORT void evm_destroy(struct evm_instance* evm);
/// @param evm The EVM instance to be configured.
/// @param name The option name. Cannot be null.
/// @param value The new option value. Cannot be null.
/// @return True if the option set successfully.
EXPORT bool evm_set_option(struct evm_instance* evm,
char const* name,
char const* value);
/// @return 1 if the option set successfully, 0 otherwise.
EXPORT int evm_set_option(struct evm_instance* evm,
char const* name,
char const* value);
/// EVM compatibility mode aka chain mode.