mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
15 lines
251 B
C++
15 lines
251 B
C++
|
|
#ifndef CLIENT_GUI_OS_GUI_HPP
|
||
|
|
#define CLIENT_GUI_OS_GUI_HPP
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
void* OsGuiGetWindow(int32_t type);
|
||
|
|
|
||
|
|
bool OsGuiIsModifierKeyDown(int32_t key);
|
||
|
|
|
||
|
|
int32_t OsGuiProcessMessage(void* message);
|
||
|
|
|
||
|
|
void OsGuiSetGxWindow(void* window);
|
||
|
|
|
||
|
|
#endif
|