aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorLee Salzman <[email protected]>2020-08-23 16:40:17 -0400
committerLee Salzman <[email protected]>2020-08-23 16:40:17 -0400
commit259e5dbd23d18a7d78b548ddbb99d66fa4beebd6 (patch)
treedabf4ecafbdf61c96bb32afa4d475be9be667d77 /include
parent8d55487767bbd9d49e97d325579d7b6a6fab50b6 (diff)
downloadenet-259e5dbd23d18a7d78b548ddbb99d66fa4beebd6.tar.gz
enet-259e5dbd23d18a7d78b548ddbb99d66fa4beebd6.zip
command queuing fix
Diffstat (limited to 'include')
-rw-r--r--include/enet/enet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/enet/enet.h b/include/enet/enet.h
index a736173..b2b13e2 100644
--- a/include/enet/enet.h
+++ b/include/enet/enet.h
@@ -593,8 +593,8 @@ extern void enet_peer_setup_outgoing_command (ENetPeer *, ENetO
extern ENetOutgoingCommand * enet_peer_queue_outgoing_command (ENetPeer *, const ENetProtocol *, ENetPacket *, enet_uint32, enet_uint16);
extern ENetIncomingCommand * enet_peer_queue_incoming_command (ENetPeer *, const ENetProtocol *, const void *, size_t, enet_uint32, enet_uint32);
extern ENetAcknowledgement * enet_peer_queue_acknowledgement (ENetPeer *, const ENetProtocol *, enet_uint16);
-extern void enet_peer_dispatch_incoming_unreliable_commands (ENetPeer *, ENetChannel *);
-extern void enet_peer_dispatch_incoming_reliable_commands (ENetPeer *, ENetChannel *);
+extern void enet_peer_dispatch_incoming_unreliable_commands (ENetPeer *, ENetChannel *, ENetIncomingCommand *);
+extern void enet_peer_dispatch_incoming_reliable_commands (ENetPeer *, ENetChannel *, ENetIncomingCommand *);
extern void enet_peer_on_connect (ENetPeer *);
extern void enet_peer_on_disconnect (ENetPeer *);