2014-04-26 23:26:08 +00:00
|
|
|
#ifndef _CUDA_GROESTLCOIN_H
|
|
|
|
#define _CUDA_GROESTLCOIN_H
|
|
|
|
|
2015-02-28 12:25:16 +00:00
|
|
|
void groestlcoin_cpu_init(int thr_id, uint32_t threads);
|
2015-09-25 05:51:09 +00:00
|
|
|
void groestlcoin_cpu_free(int thr_id);
|
2014-04-26 23:26:08 +00:00
|
|
|
void groestlcoin_cpu_setBlock(int thr_id, void *data, void *pTargetIn);
|
2015-02-28 12:25:16 +00:00
|
|
|
void groestlcoin_cpu_hash(int thr_id, uint32_t threads, uint32_t startNounce, void *outputHashes, uint32_t *nounce);
|
2014-04-26 23:26:08 +00:00
|
|
|
|
2014-03-23 20:39:26 +00:00
|
|
|
#endif
|