es existiert eine Struktur sowie Daten darin (hoffe mal es ist so korrekt):
Code: Alles auswählen
Structure Lame
Config.l
SampleRate.l
Mode.b
Bitrate.d
Copyright.b
CRC.b
Original.b
Private.b
EndStructure
Dim Daten.Lame(8)
Daten(0)\Config = BE_CONFIG_MP3
Daten(0)\SampleRate = 44100
Daten(0)\Mode = BE_MP3_MODE_STEREO
Daten(0)\Bitrate = 128
Daten(0)\Copyright = TRUE
Daten(0)\CRC = FALSE
Daten(0)\Original = FALSE
Daten(0)\Private = FALSE
CallFunction(0,"Function",*mem,@Samples,@BufferSize,@hbeStream)
Wie verweise ich nun anstatt *mem auf die Struktur? Mittels @Lame ?