Newer
Older
DNA / corlib / System.Runtime.InteropServices / CallingConvention.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 179 bytes First commit
#if !LOCALTEST

namespace System.Runtime.InteropServices {
	public enum CallingConvention {
		Winapi = 1,
		Cdecl = 2,
		StdCall = 3,
		ThisCall = 4,
		FastCall = 5,
	}
}

#endif