From 7f4bbbeb2c6cc8456ceb391b3c0570ee298d54d0 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 1 Nov 2021 09:18:18 -0400 Subject: [PATCH] omg C long is so horrible --- simpledisplay.d | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/simpledisplay.d b/simpledisplay.d index 7bccb6d..845474a 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -13417,9 +13417,10 @@ mixin DynamicLoad!(XRender, "Xrender", 1, XRenderLibrarySuccessfullyLoaded) XRen cast(int) atoms.length); } - void motifHideDecorations() { + void motifHideDecorations(bool hide = true) { MwmHints hints; hints.flags = MWM_HINTS_DECORATIONS; + hints.decorations = hide ? 0 : 1; XChangeProperty( display, @@ -15050,11 +15051,11 @@ enum EventMask:int } struct MwmHints { - int flags; - int functions; - int decorations; - int input_mode; - int status; + c_ulong flags; + c_ulong functions; + c_ulong decorations; + c_long input_mode; + c_ulong status; } enum {