You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
575 B

=proto
void duk_get_memory_functions(duk_context *ctx, duk_memory_functions *out_funcs);
=summary
<p>Get the memory management functions used by the context.</p>
<p>Normally there is no reason to call this function: you can use the
memory management primitives through wrapped memory management functions
such as
<code><a href="#duk_alloc">duk_alloc()</a></code>,
<code><a href="#duk_realloc">duk_realloc()</a></code>, and
<code><a href="#duk_free">duk_free()</a></code>.</p>
=example
duk_memory_functions funcs;
duk_get_memory_functions(ctx, &funcs);
=tags
memory
heap