~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/hash/crc32.h

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 * src/usr.bin/cksum/crc32.c.
32
32
 */
33
33
 
34
 
#ifndef DRIZZLED_CRC32_H
35
 
#define DRIZZLED_CRC32_H
36
 
 
37
 
uint32_t hash_crc32(const char *key, size_t key_length);
38
 
 
39
 
#endif /* DRIZZLED_CRC32_H */
 
34
#ifndef DRIZZLED_HASH_CRC32_H
 
35
#define DRIZZLED_HASH_CRC32_H
 
36
 
 
37
namespace drizzled
 
38
{
 
39
namespace hash
 
40
{
 
41
 
 
42
uint32_t crc32(const char *key, size_t key_length);
 
43
 
 
44
} /* namespace hash */
 
45
} /* namespace drizzled */
 
46
 
 
47
#endif /* DRIZZLED_HASH_CRC32_H */