Hallo,
vielen Dank. Aber das hatte ich auch schon probiert.
elundril hat folgendes geschrieben : |
Probier mal
Delphi-Quelltext 1: 2:
| Note := LoByte(vv); Vol := HiByte(vv); |
|
Im Bass Forum sagte man mit:
dass das so gehen müsse:
BASS_ChannelSetSync(handle, BASS_SYNC_MIDI_EVENT, MIDI_EVENT_NOTE, NoteSyncProc, NULL); // set the NOTE event sync
void CALLBACK NoteSyncProc(HSYNC handle, DWORD channel, DWORD data, void *user)
{
int chan=HIWORD(data); // MIDI channel number
int note=LOBYTE(data); // note
int vel=HIBYTE(data); // velocity
// do something with that information...
}
Und da das wohl C ist, hab ich da keine Ahnung von.
Kannst Du da nochmal helfen?
Und:
Wofür ist das "delphi /delphi" Welche Bewandnis hat das?
Sorry, Ich bin halt ein Newbie........
Mit freundlichen Grüßen
Norbert