mirror of https://github.com/adamdruppe/arsd.git
omg C long is so horrible
This commit is contained in:
parent
da17b86a29
commit
7f4bbbeb2c
|
@ -13417,9 +13417,10 @@ mixin DynamicLoad!(XRender, "Xrender", 1, XRenderLibrarySuccessfullyLoaded) XRen
|
||||||
cast(int) atoms.length);
|
cast(int) atoms.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
void motifHideDecorations() {
|
void motifHideDecorations(bool hide = true) {
|
||||||
MwmHints hints;
|
MwmHints hints;
|
||||||
hints.flags = MWM_HINTS_DECORATIONS;
|
hints.flags = MWM_HINTS_DECORATIONS;
|
||||||
|
hints.decorations = hide ? 0 : 1;
|
||||||
|
|
||||||
XChangeProperty(
|
XChangeProperty(
|
||||||
display,
|
display,
|
||||||
|
@ -15050,11 +15051,11 @@ enum EventMask:int
|
||||||
}
|
}
|
||||||
|
|
||||||
struct MwmHints {
|
struct MwmHints {
|
||||||
int flags;
|
c_ulong flags;
|
||||||
int functions;
|
c_ulong functions;
|
||||||
int decorations;
|
c_ulong decorations;
|
||||||
int input_mode;
|
c_long input_mode;
|
||||||
int status;
|
c_ulong status;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
|
Loading…
Reference in New Issue