libpd-sys 0.3.4

Rust bindings for libpd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace LibPDBinding.Managed
{
	public sealed class PdProcessException : Exception
	{
		public int ErrorCode { get; private set; }

		internal PdProcessException (int errorCode, string cFunction)
		{
			ErrorCode = errorCode;
			CFunctionCall = cFunction;
		}

		public string CFunctionCall { get; private set; }
	}
}