Use packed struct for ConfigFlags (#93)

This commit is contained in:
Not-Nik 2024-05-31 20:22:57 +02:00
parent 98ced86523
commit 6ff9f0a45b
Failed to generate hash of commit
5 changed files with 110 additions and 80 deletions

View file

@ -12,7 +12,7 @@ pub extern "c" fn IsWindowMinimized() bool;
pub extern "c" fn IsWindowMaximized() bool;
pub extern "c" fn IsWindowFocused() bool;
pub extern "c" fn IsWindowResized() bool;
pub extern "c" fn IsWindowState(flag: c_uint) bool;
pub extern "c" fn IsWindowState(flag: rl.ConfigFlags) bool;
pub extern "c" fn SetWindowState(flags: rl.ConfigFlags) void;
pub extern "c" fn ClearWindowState(flags: rl.ConfigFlags) void;
pub extern "c" fn ToggleFullscreen() void;