veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
extern.h
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef VERIBLOCK_POP_CPP_C_EXTERN_H
7#define VERIBLOCK_POP_CPP_C_EXTERN_H
8
9#include <stdbool.h>
10#include <stdint.h>
11
12#include "veriblock/pop/c/array.h"
13#include "veriblock/pop/c/entities/altblock.h"
14#include "veriblock/pop/c/type_helpers.h"
15#include "veriblock/pop/c/validation_state.h"
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21// AltChain externs which should be defined
23POP_DECLARE_EXTERN_FUNCTION(get_altchain_id, int64_t);
24
27POP_DECLARE_EXTERN_FUNCTION(get_bootstrap_block, POP_ENTITY_NAME(alt_block) *);
28
30POP_DECLARE_EXTERN_FUNCTION(get_block_header_hash,
31 POP_ARRAY_NAME(u8),
32 POP_ARRAY_NAME(u8) bytes);
33
36POP_DECLARE_EXTERN_FUNCTION(check_block_header,
37 bool,
38 POP_ARRAY_NAME(u8) header_bytes,
39 POP_ARRAY_NAME(u8) root_bytes);
40
44POP_DECLARE_EXTERN_FUNCTION(log,
45 void,
46 POP_ARRAY_NAME(string) log_lvl,
47 POP_ARRAY_NAME(string) msg);
48
49#ifdef __cplusplus
50} // end of extern "C"
51#endif
52
53#endif