1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
.TH "al_android_set_apk_fs_interface" "3" "" "Allegro reference manual" ""
.SH NAME
.PP
al_android_set_apk_fs_interface \- Allegro 5 API
.SH SYNOPSIS
.IP
.nf
\f[C]
#include\ <allegro5/allegro_android.h>
void\ al_android_set_apk_fs_interface(void)
\f[]
.fi
.SH DESCRIPTION
.PP
This function will set up a custom ALLEGRO_FS_INTERFACE(3) which allows
working within the APK filesystem.
The filesystem root is your assets directory and there is read\-only
access to all files within.
.RS
.PP
\f[I]Note:\f[] Some things like querying file size or attributes are not
supported by this.
You can always use the PhysFS addon to open the APK file (it is just a
regular .zip file) and get more complete information.
.RE
.SH SINCE
.PP
5.1.13
|