1
0
mirror of synced 2024-11-15 03:27:40 +01:00
ImHex/source/window/linux_window.cpp
WerWolv 2362e7a11f sys: Enable logging colors on Windows, hide console
Console log can still be seen now when running ImHex through the console but the window won't pop up by default anymore
2021-08-22 20:24:42 +02:00

25 lines
289 B
C++

#include "window.hpp"
#if defined(OS_LINUX)
namespace hex {
void Window::initNative() {
}
void Window::setupNativeWindow() {
}
void Window::updateNativeWindow() {
}
void Window::drawTitleBar() {
}
}
#endif