From 7893234cd36223a51dd85e1b57d22f82ee9966a6 Mon Sep 17 00:00:00 2001 From: Nishi Date: Tue, 28 Apr 2026 15:20:14 +0900 Subject: [PATCH] stub --- src/backend/haiku.cxx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/backend/haiku.cxx b/src/backend/haiku.cxx index e492195..5554025 100644 --- a/src/backend/haiku.cxx +++ b/src/backend/haiku.cxx @@ -50,5 +50,31 @@ void MwLLShowImpl(MwLL handle, int show) {} void MwLLSetSizeHintsImpl(MwLL handle, int minx, int miny, int maxx, int maxy) {} +void MwLLMakeBorderlessImpl(MwLL handle, int toggle){} + +void MwLLMakeToolWindowImpl(MwLL handle){} + +void MwLLMakePopupImpl(MwLL handle, MwLL parent){} + +void MwLLBeginStateChangeImpl(MwLL handle){} + +void MwLLEndStateChangeImpl(MwLL handle){} + +void MwLLFocusImpl(MwLL handle){} + +void MwLLGrabPointerImpl(MwLL handle, int toggle){} + +void MwLLSetClipboardImpl(MwLL handle, const char* text, int clipboard_type){} + +void MwLLGetClipboardImpl(MwLL handle, int clipboard_type){} + +void MwLLGetCursorCoordImpl(MwLL handle, MwPoint* point){} + +void MwLLGetScreenSizeImpl(MwLL handle, MwRect* rect){} + +void MwLLSetDarkThemeImpl(MwLL handle, int toggle){} + +MwBool MwLLDoModernImpl(MwLL handle){} + #include "call.c" CALL(Haiku);