This commit is contained in:
Nishi 2026-01-27 12:10:08 +09:00
commit c7678eaeab
Signed by: nishi
GPG key ID: 27EF69B208EB9343
9 changed files with 149 additions and 36 deletions

View file

@ -0,0 +1,20 @@
#ifndef __GEARSRC_SOUND_H__
#define __GEARSRC_SOUND_H__
#include <GearSrc/MachDep.h>
#include <GearSrc/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
#define GSSoundRate 48000
GSDECL GSSound GSSoundOpen(GSClient client);
GSDECL void GSSoundClose(GSSound sound);
#ifdef __cplusplus
}
#endif
#endif