From 521cc2d8e239cca75e7c565f574e4573cb109429 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 5 Jan 2025 22:34:04 +0300 Subject: Steam: basic group chat support --- protocols/Steam/src/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'protocols/Steam/src/main.cpp') diff --git a/protocols/Steam/src/main.cpp b/protocols/Steam/src/main.cpp index 920345a2e5..828311e40f 100644 --- a/protocols/Steam/src/main.cpp +++ b/protocols/Steam/src/main.cpp @@ -171,6 +171,11 @@ void CMPlugin::InitSteamServices() serviceHandlers[FriendGetRecentMessages] = ServiceResponseHandler(&CSteamProto::OnGotRecentMessages); serviceHandlers[FriendGetIncomingMessage] = ServiceResponseHandler(&CSteamProto::OnGotIncomingMessage); + serviceHandlers[GetMyChatRoomGroups] = ServiceResponseHandler(&CSteamProto::OnGetMyChats); + serviceHandlers[GetChatHistory] = ServiceResponseHandler(&CSteamProto::OnGetChatHistory); + serviceHandlers[NotifyIncomingChatMessage] = ServiceResponseHandler(&CSteamProto::OnGetChatMessage); + serviceHandlers[LeaveChatGroup] = ServiceResponseHandler(&CSteamProto::OnLeftChat); + serviceHandlers[GetOwnAuthorizedDevices] = ServiceResponseHandler(&CSteamProto::OnGotDeviceList); serviceHandlers[NotificationReceived] = ServiceResponseHandler(&CSteamProto::OnGotNotification); -- cgit v1.2.3