mirror of
https://git.wownero.com/wownero/wownero.git
synced 2025-03-14 16:36:37 +00:00
This reverts commit 79d46c4d551a9b1261801960095bf4d24967211a, reversing changes made to c9fc61dbb56cca442c775faa2554a7460879b637.
17 lines
289 B
C
17 lines
289 B
C
#ifndef SRC_BLOCKS_BLOCKS_H_
|
|
#define SRC_BLOCKS_BLOCKS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const unsigned char *get_blocks_dat_start(int testnet, int stagenet);
|
|
size_t get_blocks_dat_size(int testnet, int stagenet);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* SRC_BLOCKS_BLOCKS_H_ */
|