diff options
| author | realtradam <[email protected]> | 2023-06-05 04:40:58 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-06-05 04:40:58 -0400 |
| commit | 06a3fc95288b8301a3b872ec5b4e906240f76fef (patch) | |
| tree | 27fc7b7fb2911e11c661cbebc6161c40cefb0f72 /include/rodeo/audio_t.h | |
| parent | 6ffc61e72504f2a0e99831781ce060dada173aff (diff) | |
| download | RodeoKit-06a3fc95288b8301a3b872ec5b4e906240f76fef.tar.gz RodeoKit-06a3fc95288b8301a3b872ec5b4e906240f76fef.zip | |
begin rewrite to avoid exposed pointers
Diffstat (limited to 'include/rodeo/audio_t.h')
| -rw-r--r-- | include/rodeo/audio_t.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/rodeo/audio_t.h b/include/rodeo/audio_t.h index 45dcbb0..561229a 100644 --- a/include/rodeo/audio_t.h +++ b/include/rodeo/audio_t.h @@ -1,3 +1,19 @@ #pragma once +typedef struct rodeo_audio_sound_data rodeo_audio_sound_data_t; +typedef +struct +{ + rodeo_audio_sound_data_t *data; +} +rodeo_audio_sound_t; + +typedef struct rodeo_audio_music_data rodeo_audio_music_data_t; + +typedef +struct +{ + rodeo_audio_music_data_t *data; +} +rodeo_audio_music_t; |
