From 965bf81879b22a25fd9b0d17ce6defd3d51c6173 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Tue, 7 Jul 2026 14:30:21 +0530 Subject: engine can now send updates to uci --- src/uci/response.h | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src/uci/response.h') diff --git a/src/uci/response.h b/src/uci/response.h index 17204f5..16652d2 100644 --- a/src/uci/response.h +++ b/src/uci/response.h @@ -1,10 +1,19 @@ #include "command.h" #include "state.h" +#include "../ipc.h" -void handle_uci(uci_state *state, ucicmd cmd); +void handle_uci( + uci_state *state, + engine_messages* engine_message, + ucicmd cmd +); void handle_initial(uci_state *state, ucicmd cmd); void handle_idle(uci_state *state, ucicmd cmd); void handle_sync(uci_state *state, ucicmd cmd); void handle_ping(uci_state *state, ucicmd cmd); -void handle_active(uci_state *state, ucicmd cmd); +void handle_active( + uci_state *state, + engine_messages* engine_message, + ucicmd cmd +); void handle_halt(uci_state *state, ucicmd cmd); -- cgit v1.2.3