projects
/
polyglot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Limit UCI Hash setting to engine-specified maximum
[polyglot.git]
/
xboard2uci.h
1
2
// xboard2uci.h
3
4
#ifndef XBOARD2UCI_H
5
#define XBOARD2UCI_H
6
7
// includes
8
9
#include "util.h"
10
11
// types
12
13
// functions
14
15
extern void xboard2uci_init ();
16
extern void xboard2uci_gui_step (char string[]);
17
extern void xboard2uci_engine_step (char string[]);
18
extern void xboard2uci_send_options ();
19
20
21
#endif // !defined XBOARD2UCI_H
22
23
// end of xboard2uci.h
24