mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-08 16:48:18 +00:00
Replace #by_ptr ... with Maybe(^...) where SDL API allows nil pointers
This commit is contained in:
Vendored
+1
-1
@@ -52,7 +52,7 @@ foreign lib {
|
||||
TextInputActive :: proc(window: ^Window) -> bool ---
|
||||
StopTextInput :: proc(window: ^Window) -> bool ---
|
||||
ClearComposition :: proc(window: ^Window) -> bool ---
|
||||
SetTextInputArea :: proc(window: ^Window, #by_ptr rect: Rect, cursor: c.int) -> bool ---
|
||||
SetTextInputArea :: proc(window: ^Window, rect: Maybe(^Rect), cursor: c.int) -> bool ---
|
||||
GetTextInputArea :: proc(window: ^Window, rect: ^Rect, cursor: ^c.int) -> bool ---
|
||||
HasScreenKeyboardSupport :: proc() -> bool ---
|
||||
ScreenKeyboardShown :: proc(window: ^Window) -> bool ---
|
||||
|
||||
Reference in New Issue
Block a user