mono-hash-internals.h 470 B

1234567891011121314151617
  1. /**
  2. * \file
  3. */
  4. #ifndef __MONO_G_HASH_INTERNALS_H__
  5. #define __MONO_G_HASH_INTERNALS_H__
  6. #include "mono/metadata/mono-hash.h"
  7. #include "mono/metadata/mono-gc.h"
  8. MonoGHashTable *
  9. mono_g_hash_table_new_type_internal (GHashFunc hash_func, GEqualFunc key_equal_func, MonoGHashGCType type, MonoGCRootSource source, void *key, const char *msg);
  10. void
  11. mono_g_hash_table_insert_internal (MonoGHashTable *h, gpointer k, gpointer v);
  12. #endif /* __MONO_G_HASH_INTERNALS_H__ */