Declare Function MidiOutOpen Lib "mmsystem.dll" (hMidiOut As Long, ByVal DeviceId As Integer, ByVal C As Long, ByVal I As Long, ByVal F As Long) As Integer
Declare Function MidiOutShortMsg Lib "mmsystem.dll" (ByVal hMidiOut As Integer, ByVal MidiMessage As Long) As Integer
Declare Function MidiOutClose Lib "mmsystem.dll" (ByVal hMidiOut As Integer) As Integer
Declare Function MidiOutSetVolume Lib "mmsystem.dll" (ByVal wDeviceID As Integer, ByVal dwVolume As Long) As Integer
Declare Function MidiOutGetID Lib "mmsystem.dll" (ByVal hMidOut As Integer, lpwDeviceID As Integer) As Integer
' Other API Functions
Declare Function GetPrivateProfileString Lib "kernel" (ByVal Sname$, ByVal Kname$, ByVal Def$, ByVal Ret$, ByVal Size%, ByVal Fname$) As Integer
Declare Function sndPlaySound Lib "mmsystem" (ByVal lpsSound As String, ByVal wFlag As Integer) As Integer
Global MidiEventOut, MidiNoteOut, MidiVelOut As Long
Global hMidiOut As Long
Global hMidiOutCopy As Integer
Global MidiOpenError As String
Global Const MODAL = 1
Global Const ShiftKey = 1
' The Patch number array used for current patch for each midi channel
' Then Volume array used for each channels volume setting
' TrackChannel is array for the current midi channel that that Track on the mixi is set to.
Global MidiPatch(16), MidiVolume(16), TrackChannel(16), MidiPan(16), Octave(16) As Integer
' The current Midi Channel out set on Piano form
Global MidiChannelOut As Integer
' The Velocity (Volume) of notes for current midi channel
Global MidiVelocity As Integer
'Boolean for it CapsLock has been pressed or not
Global CapsLock As Integer
' NoteRepeat used to stop the same key from repeating. CapsLock detects if it is down.