mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-06 23:15:47 -07:00
13 lines
276 B
C
13 lines
276 B
C
#ifndef SYSDEP_SND_H__
|
|
#define SYSDEP_SND_H__
|
|
|
|
const size_t SND_CARD_LEN = 128;
|
|
extern char snd_card[SND_CARD_LEN];
|
|
|
|
const size_t SND_DRV_VER_LEN = 256;
|
|
extern char snd_drv_ver[SND_DRV_VER_LEN];
|
|
|
|
|
|
extern void get_snd_info(void);
|
|
|
|
#endif // #ifndef SYSDEP_SND_H__
|