namespace OpenToolkit.GraphicsLibraryFramework
{
///
/// Window hints for the WindowHintString function.
///
public enum WindowHintString
{
///
/// Sets the frame name on Cocoa. On any other platform, this does nothing.
///
CocoaFrameName = 0x00023002,
///
/// Sets the class name on X11. On any other platform, this does nothing.
///
X11ClassName = 0x00024001,
///
/// Sets the instance name on X11. on any other platform, this does nothing.
///
X11InstanceName = 0x00024002,
}
}