rename things

This commit is contained in:
Nishi 2026-01-27 18:07:48 +09:00
commit 97f105251a
5 changed files with 6 additions and 6 deletions

View file

@ -13,7 +13,7 @@ GSDECL void GSClientDestroy(GSClient client);
GSDECL void GSClientStep(GSClient client);
GSDECL GSGL GSClientGetGL(GSClient client);
GSDECL GSSoundEngine GSClientGetSoundEngine(GSClient client);
GSDECL void GSClientToggleSkybox(GSClient client, GSBool toggle);
GSDECL void GSClientSetSkybox(GSClient client, GSBool toggle);
#ifdef __cplusplus
}

View file

@ -12,7 +12,7 @@ extern "C" {
GSDECL GSSound GSSoundNew(GSSoundEngine sengine);
GSDECL GSSound GSSoundOpen(GSSoundEngine sengine, const char* path);
GSDECL void GSSoundClose(GSSound sound);
GSDECL void GSSoundToggleLoop(GSSound sound, GSBool toggle);
GSDECL void GSSoundSetLoop(GSSound sound, GSBool toggle);
GSDECL void GSSoundStart(GSSound sound);
GSDECL void GSSoundResume(GSSound sound);
GSDECL void GSSoundPause(GSSound audio);