Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef _MURMURHASH3_H_
00010 #define _MURMURHASH3_H_
00011
00012 #include <vlCore/std_types.hpp>
00013
00014 namespace vl
00015 {
00016 VLCORE_EXPORT void MurmurHash3_x86_32 ( const void * key, int len, u32 seed, void * out );
00017
00018 VLCORE_EXPORT void MurmurHash3_x86_128 ( const void * key, int len, u32 seed, void * out );
00019
00020 VLCORE_EXPORT void MurmurHash3_x64_128 ( const void * key, int len, u32 seed, void * out );
00021 }
00022
00023 #endif // _MURMURHASH3_H_