1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
.\" Automatically generated by Pandoc 1.19.2.4
.\"
.TH "ALLEGRO_SAMPLE_ID" "3" "" "Allegro reference manual" ""
.hy
.SH NAME
.PP
ALLEGRO_SAMPLE_ID \- Allegro 5 API
.SH SYNOPSIS
.IP
.nf
\f[C]
#include\ <allegro5/allegro_audio.h>
typedef\ struct\ ALLEGRO_SAMPLE_ID\ ALLEGRO_SAMPLE_ID;
\f[]
.fi
.SH DESCRIPTION
.PP
An ALLEGRO_SAMPLE_ID represents a sample being played via
al_play_sample(3).
It can be used to later stop the sample with al_stop_sample(3).
The underlying ALLEGRO_SAMPLE_INSTANCE can be extracted using
al_lock_sample_id(3).
|