summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-15 10:16:35 +0200
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-15 10:16:35 +0200
commitcbc4ce750f2edc797a50a1138c7894dee8919b05 (patch)
tree8f5d12b3a1047178fe9c483b2f5c3b6e25b1bb21
parentc1d1c53450092799a25133a25e9676bb217e6f55 (diff)
Servers: Set kIPCBroadcast to kIPCBroadcastNew, we need specs regarding
that. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
-rw-r--r--Private/Servers/CoreDisplay/Sources/CoreDisplay.c2
-rw-r--r--Private/Servers/CoreEvents/Sources/CoreEvents.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Private/Servers/CoreDisplay/Sources/CoreDisplay.c b/Private/Servers/CoreDisplay/Sources/CoreDisplay.c
index 618bb031..5ea569ae 100644
--- a/Private/Servers/CoreDisplay/Sources/CoreDisplay.c
+++ b/Private/Servers/CoreDisplay/Sources/CoreDisplay.c
@@ -17,7 +17,7 @@ DWordType ServerStartup(VoidType)
// as well.
//
- IPCSendMessage(kIPCBroadcast); /// broadcast our presence
+ IPCSendMessage(kIPCBroadcastNew); /// broadcast our presence
return 0;
}
diff --git a/Private/Servers/CoreEvents/Sources/CoreEvents.c b/Private/Servers/CoreEvents/Sources/CoreEvents.c
index 87fbffb1..e15bdebe 100644
--- a/Private/Servers/CoreEvents/Sources/CoreEvents.c
+++ b/Private/Servers/CoreEvents/Sources/CoreEvents.c
@@ -13,7 +13,7 @@
/// @brief Called when the server starts.
DWordType ServerStartup(VoidType)
{
- IPCSendMessage(kIPCBroadcast); /// broadcast our presence
+ IPCSendMessage(kIPCBroadcastNew); /// broadcast our presence
return 0;
}