diff options
Diffstat (limited to 'src/H5MMpublic.h')
-rw-r--r-- | src/H5MMpublic.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5MMpublic.h b/src/H5MMpublic.h index b5cd659..5b8b579 100644 --- a/src/H5MMpublic.h +++ b/src/H5MMpublic.h @@ -21,6 +21,10 @@ /* Public headers needed by this file */ #include <H5public.h> +/* These typedefs are currently used for VL datatype allocation/freeing */ +typedef void *(* H5MM_allocate_t)(size_t size,void *info); +typedef void (* H5MM_free_t)(void *mem, void *free_info); + #ifdef __cplusplus extern "C" { #endif |