Added GdiCharset enum. Not used for now.

This commit is contained in:
the_fiddler 2007-10-20 13:40:55 +00:00
parent 35c1e7ae3b
commit 55f8be2bd6

View file

@ -3146,6 +3146,38 @@ namespace OpenTK.Platform.Windows
#endregion
#region GDI charset
/// <summary>
/// Enumerates the available character sets.
/// </summary>
public enum GdiCharset
{
Ansi = 0,
Default = 1,
Symbol = 2,
ShiftJIS = 128,
Hangeul = 129,
Hangul = 129,
GB2312 = 134,
ChineseBig5 = 136,
OEM = 255,
//#if(WINVER >= 0x0400)
Johab = 130,
Hebrew = 177,
Arabic = 178,
Greek = 161,
Turkish = 162,
Vietnamese = 163,
Thai = 222,
EastEurope = 238,
Russian = 204,
Mac = 77,
Baltic = 186,
}
#endregion
#endregion
#region --- Callbacks ---