mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
Cleaned up PubSub
* Callback arguments now const * Fixed missing includes
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
|
||||
#pragma mark Connection helpers
|
||||
|
||||
static void ios_OnChannelConnectedEventHandler(void *context, ChannelConnectedEventArgs *e)
|
||||
static void ios_OnChannelConnectedEventHandler(void *context, const ChannelConnectedEventArgs *e)
|
||||
{
|
||||
rdpSettings *settings;
|
||||
mfContext *afc;
|
||||
@@ -56,7 +56,8 @@ static void ios_OnChannelConnectedEventHandler(void *context, ChannelConnectedEv
|
||||
}
|
||||
}
|
||||
|
||||
static void ios_OnChannelDisconnectedEventHandler(void *context, ChannelDisconnectedEventArgs *e)
|
||||
static void ios_OnChannelDisconnectedEventHandler(void *context,
|
||||
const ChannelDisconnectedEventArgs *e)
|
||||
{
|
||||
rdpSettings *settings;
|
||||
mfContext *afc;
|
||||
|
||||
Reference in New Issue
Block a user