Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenlib/BLI_ghash.h')
-rw-r--r--source/blender/blenlib/BLI_ghash.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_ghash.h b/source/blender/blenlib/BLI_ghash.h
index 5f748fcaecd..fe24d9a0069 100644
--- a/source/blender/blenlib/BLI_ghash.h
+++ b/source/blender/blenlib/BLI_ghash.h
@@ -153,9 +153,17 @@ int BLI_ghashutil_strcmp(const void *a, const void *b);
unsigned int BLI_ghashutil_inthash(const void *ptr);
int BLI_ghashutil_intcmp(const void *a, const void *b);
+GHash *BLI_ghash_ptr_new_ex(const char *info,
+ const unsigned int nentries_reserve);
GHash *BLI_ghash_ptr_new(const char *info);
+GHash *BLI_ghash_str_new_ex(const char *info,
+ const unsigned int nentries_reserve);
GHash *BLI_ghash_str_new(const char *info);
+GHash *BLI_ghash_int_new_ex(const char *info,
+ const unsigned int nentries_reserve);
GHash *BLI_ghash_int_new(const char *info);
+GHash *BLI_ghash_pair_new_ex(const char *info,
+ const unsigned int nentries_reserve);
GHash *BLI_ghash_pair_new(const char *info);
typedef struct GHashPair {