1
0
Fork 0
UNITY_PORTMIDI_WRAPPER/PortMidi/Scripts/PortMidiEnum.cs

30 lines
543 B
C#
Raw Normal View History

2019-02-22 14:29:26 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PortMidi
{
public enum PmError : int
{
pmNoError = 0,
pmNoData = 0,
pmGotData = 1,
pmHostError = -10000,
pmInvalidDeviceId,
pmInsufficientMemory,
pmBufferTooSmall,
pmBufferOverflow,
pmBadPtr,
pmInternalError,
pmBufferMaxSize
}
public enum StreamType : int
{
OUTPUT = 0,
INPUT = 1
}
}