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

namespace System.Runtime.InteropServices {
	public enum CharSet {
		None = 1,
		Ansi = 2,
		Unicode = 3,
		Auto = 4,
	}
}

#endif