27 #include <Inventor/C/basic.h>
28 #include <Inventor/C/threads/common.h>
39 typedef void cc_storage_f(
void * closure);
40 typedef void cc_storage_apply_func(
void * dataptr,
void * closure);
41 COIN_DLL_API cc_storage * cc_storage_construct(
unsigned int size);
42 COIN_DLL_API cc_storage * cc_storage_construct_etc(
unsigned int size,
43 cc_storage_f * constructor,
44 cc_storage_f * destructor);
45 COIN_DLL_API
void cc_storage_destruct(cc_storage * storage);
47 COIN_DLL_API
void * cc_storage_get(cc_storage * storage);
48 COIN_DLL_API
void cc_storage_apply_to_all(cc_storage * storage,
49 cc_storage_apply_func * func,