add mod/xm

This commit is contained in:
Nishi 2026-01-27 14:36:27 +09:00
commit 1af31757fd
Signed by: nishi
GPG key ID: 27EF69B208EB9343
15 changed files with 499 additions and 47 deletions

View file

@ -0,0 +1,20 @@
#ifndef __GEARSRC_SOUNDENGINE_H__
#define __GEARSRC_SOUNDENGINE_H__
#include <GearSrc/MachDep.h>
#include <GearSrc/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
GSDECL GSSoundEngine GSSoundEngineCreate(GSClient client);
GSDECL void GSSoundEngineDestroy(GSSoundEngine sengine);
GSDECL void GSSoundEngineLock(GSSoundEngine sengine);
GSDECL void GSSoundEngineUnlock(GSSoundEngine sengine);
#ifdef __cplusplus
}
#endif
#endif