gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

wMidiTypes.h (300B)


      1 #pragma once
      2 
      3 namespace wLib
      4 {
      5 	enum MidiHeaderByte : uint8_t
      6 	{
      7 		IdWaldorf = 0x3e,
      8 		IdDeviceOmni = 0x7f
      9 	};
     10 
     11 	enum SysexIndex
     12 	{
     13 		IdxSysexBegin = 0,
     14 		IdxIdWaldorf = 1,
     15 		IdxIdMachine = 2,
     16 		IdxDeviceId = 3,
     17 		IdxCommand = 4,
     18 
     19 		// dumps / dump requests
     20 		IdxBuffer = 5,
     21 		IdxLocation = 6,
     22 	};
     23 }