mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-21 15:56:58 +02:00
34 lines
622 B
C
34 lines
622 B
C
#ifndef miniaudio_backend_template_h
|
|
#define miniaudio_backend_template_h
|
|
|
|
#include "../../../miniaudio.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern ma_device_backend_vtable* ma_device_backend_template;
|
|
MA_API ma_device_backend_vtable* ma_template_get_vtable(void);
|
|
|
|
|
|
typedef struct
|
|
{
|
|
int _unused;
|
|
} ma_context_config_template;
|
|
|
|
MA_API ma_context_config_template ma_context_config_template_init(void);
|
|
|
|
|
|
typedef struct
|
|
{
|
|
int _unused;
|
|
} ma_device_config_template;
|
|
|
|
MA_API ma_device_config_template ma_device_config_template_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* miniaudio_backend_template_h */
|
|
|