feat(client): migrate gui functions and implement OsGuiGetWindow

This commit is contained in:
fallenoak 2023-03-20 00:06:50 -05:00 committed by GitHub
parent acaa42019a
commit ba790418e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 120 additions and 33 deletions

14
src/client/gui/OsGui.hpp Normal file
View file

@ -0,0 +1,14 @@
#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