2023-09-13 21:32:30 -06:00
|
|
|
#ifndef ARC_AUDIO_CONFIG_H_
|
|
|
|
|
#define ARC_AUDIO_CONFIG_H_
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2025-03-16 02:03:18 -06:00
|
|
|
//#include "arc/std/string.h"
|
2023-09-13 21:32:30 -06:00
|
|
|
|
2025-03-16 02:03:18 -06:00
|
|
|
//typedef struct ARC_Config ARC_Config;
|
|
|
|
|
//void ARC_AudioConfig_Init(ARC_Config *config);
|
2023-09-13 21:32:30 -06:00
|
|
|
|
2025-03-16 02:03:18 -06:00
|
|
|
//uint8_t ARC_Audio_Read(ARC_Config *config, ARC_String *string, void **value);
|
2023-09-13 21:32:30 -06:00
|
|
|
|
2025-03-16 02:03:18 -06:00
|
|
|
//void ARC_Audio_Delete(ARC_Config *config, ARC_String *string, void *value);
|
2023-09-13 21:32:30 -06:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-03-16 02:03:18 -06:00
|
|
|
#endif //ARC_AUDIO_CONFIG_H_
|