root/modules/module_hash.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef __MODULE_HASH_H__
   2 #define __MODULE_HASH_H__
   3 
   4 // Struct for symbol hash table entries
   5 typedef struct
   6 {
   7     unsigned int    hash;
   8     const void      *address;
   9 } sym_hash;
  10 
  11 #endif /* __MODULE_HASH_H__ */

/* [<][>][^][v][top][bottom][index][help] */