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

deviceTypes.h (248B)


      1 #pragma once
      2 
      3 namespace synthLib
      4 {
      5 	enum StateType
      6 	{
      7 		StateTypeGlobal,
      8 		StateTypeCurrentProgram,
      9 	};
     10 
     11 	enum class DeviceError
     12 	{
     13 		Invalid = -1,
     14 		None = 0,
     15 		Unknown,
     16 		FirmwareMissing,
     17 		RemoteUdpConnectFailed,
     18 		RemoteTcpConnectFailed,
     19 	};
     20 }