summaryrefslogtreecommitdiff
path: root/src/uci/response.h
blob: 16652d2ce7f438613ed994c3772e478a20237b46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "command.h"
#include "state.h"
#include "../ipc.h"

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,
  engine_messages* engine_message,
  ucicmd cmd
);
void handle_halt(uci_state *state, ucicmd cmd);