mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2025-01-30 04:57:05 -03:00
17 lines
239 B
C
17 lines
239 B
C
|
#ifndef SRC_BLOCKS_BLOCKS_H_
|
||
|
#define SRC_BLOCKS_BLOCKS_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
const unsigned char *get_blocks_dat_start();
|
||
|
size_t get_blocks_dat_size();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif /* SRC_BLOCKS_BLOCKS_H_ */
|