1
Fork 0
turbonss/src/cmph_structs.h

34 lines
673 B
C
Raw Normal View History

2004-12-23 15:16:30 +02:00
#ifndef __CMPH_STRUCTS_H__
#define __CMPH_STRUCTS_H__
#include "cmph.h"
/** Hash generation algorithm data
*/
struct __config_t
2004-12-23 15:16:30 +02:00
{
2008-04-12 09:17:21 +03:00
CMPH_ALGO algo;
cmph_io_adapter_t *key_source;
cmph_uint32 verbosity;
double c;
void *data; // algorithm dependent data
2004-12-23 15:16:30 +02:00
};
/** Hash querying algorithm data
*/
struct __cmph_t
2004-12-23 15:16:30 +02:00
{
2008-04-12 09:17:21 +03:00
CMPH_ALGO algo;
cmph_uint32 size;
cmph_io_adapter_t *key_source;
void *data; // algorithm dependent data
2004-12-23 15:16:30 +02:00
};
2005-01-24 22:25:58 +02:00
cmph_config_t *__config_new(cmph_io_adapter_t *key_source);
void __config_destroy(cmph_config_t*);
void __cmph_dump(cmph_t *mphf, FILE *);
cmph_t *__cmph_load(FILE *f);
2004-12-23 15:16:30 +02:00
#endif