X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Futils%2Fmono-publib.h;h=df810a98e1ae1c8fccf1e93d7168713b2fc04f5c;hb=6474f8e6126933773a64374c6a38d662bf80d150;hp=53d4aa3ea7f4bed28874b023c70f33b9fd9cd490;hpb=c516dda69361557004044b2c966a11082177033b;p=mono.git diff --git a/mono/utils/mono-publib.h b/mono/utils/mono-publib.h index 53d4aa3ea7f..df810a98e1a 100644 --- a/mono/utils/mono-publib.h +++ b/mono/utils/mono-publib.h @@ -53,6 +53,8 @@ typedef unsigned __int64 uint64_t; #endif /* end of compiler-specific stuff */ +#include + #if defined(MONO_DLL_EXPORT) #define MONO_API MONO_API_EXPORT #elif defined(MONO_DLL_IMPORT) @@ -69,6 +71,19 @@ typedef uint32_t mono_unichar4; typedef void (*MonoFunc) (void* data, void* user_data); typedef void (*MonoHFunc) (void* key, void* value, void* user_data); +typedef struct { + void* (*malloc) (size_t n_bytes); + void* (*realloc) (void* mem, size_t n_bytes); + void (*free) (void* mem); + void* (*calloc) (size_t n_blocks, size_t n_block_bytes); +} MonoAllocatorVTable; + +/* + * eglib must be built with overridable allocator support (G_OVERRIDABLE_ALLOCATORS=1) + * for mono_set_allocator_vtable to do anything. + */ +MONO_API void mono_set_allocator_vtable (MonoAllocatorVTable* vtable); + MONO_API void mono_free (void *); #define MONO_CONST_RETURN const