blob: 24db18f5368447302248b286224fe60a817fa855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// This file is part of the 64k demo project.
// It defines the public interface for the audio system.
// Includes initialization, shutdown, and frame updates.
#pragma once
void audio_init();
void audio_start(); // Starts the audio device callback
#if !defined(STRIP_ALL)
void audio_render_silent(float duration_sec); // Fast-forwards audio state
#endif /* !defined(STRIP_ALL) */
void audio_update();
void audio_shutdown();
|