36#include <Inventor/C/basic.h>
37#include <Inventor/C/threads/common.h>
48typedef void cc_storage_f(
void * closure);
49typedef void cc_storage_apply_func(
void * dataptr,
void * closure);
50COIN_DLL_API cc_storage * cc_storage_construct(
unsigned int size);
51COIN_DLL_API cc_storage * cc_storage_construct_etc(
unsigned int size,
52 cc_storage_f * constructor,
53 cc_storage_f * destructor);
54COIN_DLL_API
void cc_storage_destruct(cc_storage * storage);
56COIN_DLL_API
void * cc_storage_get(cc_storage * storage);
57COIN_DLL_API
void cc_storage_apply_to_all(cc_storage * storage,
58 cc_storage_apply_func * func,