The OpenD Programming Language

cairo_destroy_func_t

cairo_destroy_func_t the type of function which is called when a data element is destroyed. It is passed the pointer to the data element and should free any memory and resources allocated for it.

import cairo.c.cairo;
extern (C)
alias cairo_destroy_func_t = void function(void* data)

Meta