p2pool mods

This commit is contained in:
wowario
2023-01-26 23:02:40 +03:00
parent 607bad48f3
commit 1ce107336d
3 changed files with 16 additions and 8 deletions

View File

@@ -50,11 +50,15 @@ typedef enum {
RANDOMX_FLAG_ARGON2_AVX2 = 64,
RANDOMX_FLAG_ARGON2 = 96
} randomx_flags;
#if defined(__cplusplus)
struct randomx_dataset;
struct randomx_cache;
class randomx_vm;
#else
typedef struct randomx_dataset randomx_dataset;
typedef struct randomx_cache randomx_cache;
typedef struct randomx_vm randomx_vm;
#endif
#if defined(__cplusplus)