diff options
| author | David Reid <[email protected]> | 2017-11-12 14:17:05 +1000 |
|---|---|---|
| committer | David Reid <[email protected]> | 2017-11-12 14:17:05 +1000 |
| commit | 75433a670e0880c4d23d5178b073836de3628547 (patch) | |
| tree | 62437e13d4dca37ddd4df9ed84f8b3353fa47f93 /src/raylib.h | |
| parent | 8380c488be90ed0c29a6446b490bfaca6574436e (diff) | |
| download | raylib-75433a670e0880c4d23d5178b073836de3628547.tar.gz raylib-75433a670e0880c4d23d5178b073836de3628547.zip | |
Initial work on adding support for mini_al.
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index 392e0a24..ae1e5813 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -486,6 +486,8 @@ typedef struct Wave { // Sound source type typedef struct Sound { + void* handle; // A pointer to internal data used by the sound system. + unsigned int source; // OpenAL audio source id unsigned int buffer; // OpenAL audio buffer id int format; // OpenAL audio format specifier |
