mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-04-04 21:14:58 -07:00
17 lines
293 B
C
17 lines
293 B
C
#ifndef AUDIO_H
|
|
#define AUDIO_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
// Initialize the audio driver
|
|
void audio_init();
|
|
|
|
// Play audio from a buffer
|
|
void audio_play(const uint8_t* buffer, size_t size);
|
|
|
|
// Stop audio playback
|
|
void audio_stop();
|
|
|
|
#endif |