libyasm
|
YASM associated data callback structure. More...
#include <coretype.h>
Data Fields | |
void(* | destroy )(void *data) |
Free memory allocated for associated data. More... | |
void(* | print )(void *data, FILE *f, int indent_level) |
Print a description of allocated data. More... | |
YASM associated data callback structure.
Many data structures can have arbitrary data associated with them.
Definition at line 73 of file coretype.h.
void(* yasm_assoc_data_callback::destroy)(void *data) |
Free memory allocated for associated data.
data | associated data |
Definition at line 77 of file coretype.h.
void(* yasm_assoc_data_callback::print)(void *data, FILE *f, int indent_level) |
Print a description of allocated data.
For debugging purposes.
data | associated data |
f | output file |
indent_level | indentation level |
Definition at line 84 of file coretype.h.