~ubuntu-branches/ubuntu/natty/gtkboard/natty

« back to all changes in this revision

Viewing changes to .pc/debian-changes-0.11pre0-12/src/engine.h

  • Committer: Bazaar Package Importer
  • Author(s): Barak A. Pearlmutter
  • Date: 2011-03-15 12:43:00 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20110315124300-zf9hkdc5vjyqge7e
Tags: 0.11pre0+cvs.2003.11.02-3
static size unknown gcc-4.5 fix src/{menu,wordtris}.c (closes: #564999)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  This file is a part of gtkboard, a board games system.
2
 
    Copyright (C) 2003, Arvind Narayanan <arvindn@users.sourceforge.net>
3
 
 
4
 
    This program is free software; you can redistribute it and/or modify
5
 
    it under the terms of the GNU General Public License as published by
6
 
    the Free Software Foundation; either version 2 of the License, or
7
 
    (at your option) any later version.
8
 
 
9
 
    This program is distributed in the hope that it will be useful,
10
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
    GNU General Public License for more details.
13
 
 
14
 
    You should have received a copy of the GNU General Public License
15
 
    along with this program; if not, write to the Free Software
16
 
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111 USA
17
 
 
18
 
*/
19
 
#ifndef _ENGINE_H_
20
 
#define _ENGINE_H_
21
 
 
22
 
#include "game.h"
23
 
 
24
 
//! A struct representing a command that the engine understands.
25
 
typedef struct
26
 
{
27
 
        //! The string
28
 
        char * proto_str;
29
 
        //! Has this command been implemented
30
 
        int isimpl;
31
 
        //! Function which will execute this command
32
 
        void (*impl_func) (char *);
33
 
} Command;
34
 
 
35
 
extern Command  commands[];
36
 
 
37
 
ResultType engine_eval (Pos *, /*Player,*/ float *);
38
 
 
39
 
//! Functions that do the actual thinking must periodically call this function.
40
 
/** It checks if new commands have arrived. */
41
 
void engine_poll ();
42
 
 
43
 
 
44
 
#endif