register_datafile_object
Section: Allegro manual (3)
Updated: version 4.2.2
Index
Return to Main Contents
NAME
register_datafile_object - Registers load/destroy functions for custom object types. Allegro game programming library.
SYNOPSIS
#include <allegro.h>
void register_datafile_object(int id, void *(*load)(PACKFILE *f, long size),
void (*destroy)(void *data));
DESCRIPTION
Used to add custom object types, specifying functions to load and destroy
objects of this type.
SEE ALSO
load_datafile(3),
load_datafile_object(3),
DAT_ID(3)