BASS.NET API for the Un4seen BASS Audio Library

MIDI_HEADER Constructor (Byte)

BASS.NET API for the Un4seen BASS Audio Library
Initializes a new instance of the MIDI_HEADER with the given data buffer.

Namespace:  radio42.Multimedia.Midi
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

public MIDI_HEADER(
	byte[] data
)

Parameters

data
Type: SystemByte
The byte array to use as the data buffer.
Remarks

In order to use the MIDI_HEADER with a Midi function (e.g. MIDI_InAddBuffer(IntPtr, IntPtr) or MIDI_OutLongMsg(IntPtr, IntPtr)) you must first call the Prepare(Boolean, IntPtr) method which provides a HeaderPtr to be used.

Make sure, that you always call Unprepare(Boolean, IntPtr) once you prepared the header with the Prepare(Boolean, IntPtr) method and received back the header from the Midi device in order to release all unmanaged recourses!

See Also

Reference