From 99167cd3a30cfc03b2080b329c6ec2e7e34898f2 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 15 Apr 2024 18:15:00 +0200 Subject: unstable: pushing changes. Signed-off-by: Amlal El Mahrouss --- Private/Servers/CoreDisplay/Sources/CoreDisplay.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Private/Servers/CoreDisplay/Sources/CoreDisplay.c b/Private/Servers/CoreDisplay/Sources/CoreDisplay.c index 5ea569ae..2a3f31fe 100644 --- a/Private/Servers/CoreDisplay/Sources/CoreDisplay.c +++ b/Private/Servers/CoreDisplay/Sources/CoreDisplay.c @@ -13,7 +13,7 @@ /// @brief Called when the server starts. DWordType ServerStartup(VoidType) { - CDInitDisplay(kDMNoFlags); // init standard display. Need to notify other endpoits. + CDInitDisplay(kCDNoFlags); // init standard display. Need to notify other endpoits. // as well. // @@ -25,7 +25,7 @@ DWordType ServerStartup(VoidType) /// @brief Called when the server shuts down. DWordType ServerShutdown(VoidType) { - CDCloseDisplay(); /// takes no arguments. + CDCloseDisplay(kCDShutdownAll); /// takes the close flag argument, which tells here to also close the child nodes. IPCSendMessage(kIPCBroadcastDispose); /// broadcast our presence return 0; } -- cgit v1.2.3