mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 22:35:40 +00:00
20 lines
496 B
C#
Executable file
20 lines
496 B
C#
Executable file
namespace OpenTK.Platform.MacOS
|
|
{
|
|
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,
|
|
}
|
|
}
|