2014-04-27 01:26:08 +02:00
|
|
|
#ifndef _CUDA_GROESTLCOIN_H
|
|
|
|
#define _CUDA_GROESTLCOIN_H
|
|
|
|
|
2015-02-28 13:25:16 +01:00
|
|
|
void groestlcoin_cpu_init(int thr_id, uint32_t threads);
|
2015-09-25 07:51:09 +02:00
|
|
|
void groestlcoin_cpu_free(int thr_id);
|
2014-04-27 01:26:08 +02:00
|
|
|
void groestlcoin_cpu_setBlock(int thr_id, void *data, void *pTargetIn);
|
2016-07-05 11:06:58 +02:00
|
|
|
void groestlcoin_cpu_hash(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *resNonce);
|
2014-04-27 01:26:08 +02:00
|
|
|
|
2014-03-23 21:39:26 +01:00
|
|
|
#endif
|