Fumofumotris/source/io/platforms/winhandler.h

18 lines
307 B
C
Raw Normal View History

2024-03-25 05:34:59 +00:00
#pragma once
#include <iso646.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "fumotris.h"
2024-04-02 20:06:14 +00:00
bool WinInitHandles();
2024-03-25 05:34:59 +00:00
bool WinInitConsole();
2024-04-03 23:31:47 +00:00
bool WinGetRefreshRate(u32f *out);
2024-04-02 00:55:30 +00:00
bool WinBlockInput(struct RecordBuffer *buf);
2024-03-25 05:34:59 +00:00
2024-04-03 23:31:47 +00:00
bool WinWait(struct timespec relative);