summaryrefslogtreecommitdiffhomepage
path: root/Public/Developer/SystemLib/Headers/Dialog.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-17 09:54:17 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-17 10:08:50 +0200
commitc0099ab36bf9606c5503ceb0fa0d5b64f71c7203 (patch)
tree1c310521280e3c995981a903895c7c2e124582ee /Public/Developer/SystemLib/Headers/Dialog.h
parentf93fb4439aaa865d998a790348313a4c7163bb8b (diff)
Unrelated: These changes are important but related to nothing.
- Window now becomes Wm, as in Window manager. - Fix entrypoint for FragLib. - Remove CoreEvents to be replaced with Event Server, reworked Display Server. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Public/Developer/SystemLib/Headers/Dialog.h')
-rw-r--r--Public/Developer/SystemLib/Headers/Dialog.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Public/Developer/SystemLib/Headers/Dialog.h b/Public/Developer/SystemLib/Headers/Dialog.h
index 872eae5d..800f56db 100644
--- a/Public/Developer/SystemLib/Headers/Dialog.h
+++ b/Public/Developer/SystemLib/Headers/Dialog.h
@@ -6,7 +6,7 @@
#pragma once
-#include <Headers/Window.h>
+#include <Headers/Wm.h>
struct _DialogPort;
struct _DialogPoint;
@@ -22,10 +22,11 @@ typedef struct _DialogPoint {
typedef struct _DialogPort {
WordType dlgPort;
WordType dlgKind;
- BooleanType dlgVisible;
- BooleanType dlgMoving;
+ BooleanType dlgVisible : 1;
+ BooleanType dlgMoving : 1;
DialogPoint dlgPosition;
WmDialogFn dlgProc;
+ struct _WmGFX* dlgGfx;
struct _WindowPort* parentPort;
} DialogPort;