Panda3D
 All Classes Functions Variables Enumerations
lookup3.h
1 // Filename: lookup3.h
2 // Created by: drose (01Sep06)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef LOOKUP3_H
16 #define LOOKUP3_H
17 
18 #include "dtoolbase.h"
19 #include "numeric_types.h"
20 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24 
25 EXPCL_DTOOL PN_uint32 hashword(const PN_uint32 *k, /* the key, an array of PN_uint32 values */
26  size_t length, /* the length of the key, in PN_uint32s */
27  PN_uint32 initval);
28 
29 #ifdef __cplusplus
30 }; /* end of extern "C" */
31 #endif
32 
33 #endif
34 
35 
36