23 lines
386 B
C
23 lines
386 B
C
#pragma once
|
|
#include <iso646.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "fumocommon.h"
|
|
|
|
#ifdef _WIN32
|
|
#include "win.h"
|
|
#endif
|
|
|
|
|
|
bool PlatformInit();
|
|
|
|
bool PlatformGetRefreshRate(u16f *out);
|
|
|
|
bool PlatformReadInput(struct InputRecordBuf *in, struct InputStringBuf *str);
|
|
|
|
bool PlatformStopInput();
|
|
|
|
bool PlatformWait(Time duration); |