mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-28 02:45:31 +00:00
20 lines
503 B
C#
20 lines
503 B
C#
|
namespace OpenTK.Platform.MacOS
|
|||
|
{
|
|||
|
public enum NSApplicationPresentationOptions
|
|||
|
{
|
|||
|
Default = 0,
|
|||
|
AutoHideDock = 1,
|
|||
|
HideDock = 2,
|
|||
|
AutoHideMenuBar = 4,
|
|||
|
HideMenuBar = 8,
|
|||
|
DisableAppleMenu = 16,
|
|||
|
DisableProcessSwitching = 32,
|
|||
|
DisableForceQuit = 64,
|
|||
|
DisableSessionTermination = 128,
|
|||
|
DisableHideApplication = 256,
|
|||
|
DisableMenuBarTransparency = 512,
|
|||
|
FullScreen = 1024,
|
|||
|
AutoHideToolbar = 2048,
|
|||
|
}
|
|||
|
}
|