High level GDNative
Single header GDNative high level API for C/C++
All Data Structures Files Functions Variables Typedefs Modules Pages
Functions
Memory related functions

stdlib.h compatible functions that track memory usage when Godot is running in debug mode More...

Functions

HGDN_DECL void * hgdn_alloc (size_t size)
 Compatible with malloc
 
HGDN_DECL void * hgdn_realloc (void *ptr, size_t size)
 Compatible with realloc
 
HGDN_DECL void hgdn_free (void *ptr)
 Compatible with free. It is safe to pass NULL without triggering an error message.
 

Detailed Description