2024-03-25 05:34:59 +00:00
|
|
|
#pragma once
|
2024-03-26 20:11:58 +00:00
|
|
|
#include <pthread.h>
|
2024-03-25 05:34:59 +00:00
|
|
|
#include <iso646.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "input.h"
|
2024-04-09 07:00:48 +00:00
|
|
|
#include "term.h"
|
2024-03-25 05:34:59 +00:00
|
|
|
|
2024-04-09 07:00:48 +00:00
|
|
|
bool WindowsInit(struct Terminal *term);
|
2024-03-25 05:34:59 +00:00
|
|
|
|
2024-04-02 00:55:30 +00:00
|
|
|
bool WindowsBlockInput(struct RecordBuffer *buf);
|
2024-03-25 05:34:59 +00:00
|
|
|
|
|
|
|
bool WindowsWait(double seconds);
|