aboutsummaryrefslogtreecommitdiff
path: root/modules/TUI/windows.jai
diff options
context:
space:
mode:
Diffstat (limited to 'modules/TUI/windows.jai')
-rw-r--r--modules/TUI/windows.jai10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/TUI/windows.jai b/modules/TUI/windows.jai
index 608266d..fb50e49 100644
--- a/modules/TUI/windows.jai
+++ b/modules/TUI/windows.jai
@@ -137,7 +137,7 @@
////////////////////////////////////////////////////////////////////////////////
-peek_input :: inline () -> INPUT_RECORD, success := true {
+peek_input :: () -> INPUT_RECORD, success := true {
record: INPUT_RECORD;
records_read: u32;
if PeekConsoleInputW(stdin, *record, 1, *records_read) == false {
@@ -148,7 +148,7 @@ peek_input :: inline () -> INPUT_RECORD, success := true {
return record;
}
-read_input :: inline () -> INPUT_RECORD, success := true {
+read_input :: () -> INPUT_RECORD, success := true {
record: INPUT_RECORD;
records_read: u32;
if ReadConsoleInputW(stdin, *record, 1, *records_read) == false {
@@ -159,7 +159,7 @@ read_input :: inline () -> INPUT_RECORD, success := true {
return record;
}
-count_input :: inline () -> u32, success := true {
+count_input :: () -> u32, success := true {
count: u32;
if GetNumberOfConsoleInputEvents(stdin, *count) == false {
error_code, error_string := get_error_value_and_string();
@@ -242,7 +242,7 @@ OS_reset_terminal :: () -> success := true {
return;
}
-OS_flush_input :: inline () {
+OS_flush_input :: () {
// This API is not recommended and does not have a virtual terminal equivalent.
// Attempting to empty the input queue all at once can destroy state in the queue in an unexpected manner.
if FlushConsoleInputBuffer(stdin) == false {
@@ -379,7 +379,7 @@ OS_wait_for_input :: (timeout_milliseconds: s32 = -1) -> is_input_available: boo
return false;
}
-OS_was_terminal_resized :: () -> bool {
+OS_was_terminal_resized :: inline () -> bool {
while peek_input().EventType == .WINDOW_BUFFER_SIZE_EVENT {
was_resized = true;
read_input();