first commit 26/07/2025

This commit is contained in:
2025-07-26 10:14:46 +07:00
parent f6ae8e14c0
commit a32a1d3300
4 changed files with 192 additions and 7 deletions

View File

@@ -416,6 +416,8 @@ public interface Bass extends Library {
int BASS_SYNC_MIXTIME = 0x40000000; // flag: sync at mixtime, else at playtime
int BASS_SYNC_ONETIME = 0x80000000; // flag: sync only once, else continuously
interface SYNCPROC extends Callback
{
void SYNCPROC(int handle, int channel, int data, Pointer user);
@@ -787,5 +789,4 @@ public interface Bass extends Library {
int BASS_StreamCreate(int freq, int chans, int flags, int proc, Pointer user);
}