Fix compile time warnings and a couple other cleanups.
[cboard.git] / src / engine.h
blob344ce6f7c45678019fb6e6636999bf9c696e60d7
1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
2 /*
3 Copyright (C) 2002-2006 Ben Kibbey <bjk@arbornet.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef ENGINE_H
20 #define ENGINE_H
22 #define RETURN status.engine = ENGINE_READY; \
23 return
25 enum {
26 HUMAN, ENGINE
29 pid_t enginepid;
31 void add_to_history(HISTORY **, int *, int *, const char *);
32 char *parse_piece(char *);
33 void move_piece(char *);
34 int save_pgn(const char *, int, int);
35 void update_status_window(void);
36 char *book_method(int);
37 int parse_move_text(BOARD, char *);
38 char *a2a4tosan(BOARD, char *);
39 void switch_turn(void);
40 void init_history(BOARD);
41 void free_historydata(HISTORY **, int, int);
42 void update_status_notify(char *, ...);
44 #endif