mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
feat(client): migrate gui functions and implement OsGuiGetWindow
This commit is contained in:
parent
acaa42019a
commit
ba790418e1
12 changed files with 120 additions and 33 deletions
18
src/client/gui/linux/OsGui.cpp
Normal file
18
src/client/gui/linux/OsGui.cpp
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#include "client/gui/OsGui.hpp"
|
||||
|
||||
void* OsGuiGetWindow(int32_t type) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
bool OsGuiIsModifierKeyDown(int32_t key) {
|
||||
// TODO
|
||||
return false;
|
||||
}
|
||||
|
||||
int32_t OsGuiProcessMessage(void* message) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void OsGuiSetGxWindow(void* window) {
|
||||
// TODO
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue