1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
.TH al_create_file_handle 3 "" "Allegro reference manual"
.SH NAME
.PP
al_create_file_handle \- Allegro 5 API
.SH SYNOPSIS
.IP
.nf
\f[C]
#include\ <allegro5/allegro.h>
ALLEGRO_FILE\ *al_create_file_handle(const\ ALLEGRO_FILE_INTERFACE\ *drv,
\ \ \ void\ *userdata)
\f[]
.fi
.SH DESCRIPTION
.PP
Creates an empty, opened file handle with some abstract user data.
This allows custom interfaces to extend the ALLEGRO_FILE(3) struct with
their own data.
You should close the handle with the standard al_fclose(3) function when
you are finished with it.
.SH SEE ALSO
.PP
al_fopen(3), al_fclose(3), al_set_new_file_interface(3)
|