~ubuntu-branches/ubuntu/edgy/ggz-client-libs/edgy

« back to all changes in this revision

Viewing changes to ggz-wrapper/game.h

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut, Josef Spillner, Peter Eisentraut
  • Date: 2006-09-09 13:37:14 UTC
  • mfrom: (2.1.2 edgy)
  • Revision ID: james.westby@ubuntu.com-20060909133714-q49a9kvjfkc0wcc3
Tags: 0.0.13-3
[ Josef Spillner ]
* Change ggzcore-bin dependency from ggzmod to recommends from ggzcore
  (closes: #384671).

[ Peter Eisentraut ]
* Make package dependencies binNMU-safe through use of ${binary:Version}
  (closes: #386126)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * File: game.h
 
3
 * Author: Brent Hendricks
 
4
 * Project: GGZ Text Client 
 
5
 * Date: 3/1/01
 
6
 * $Id: game.h 6500 2004-12-16 00:20:36Z josef $
 
7
 *
 
8
 * Functions for handling game events
 
9
 *
 
10
 * Copyright (C) 2000 Brent Hendricks.
 
11
 *
 
12
 * This program is free software; you can redistribute it and/or modify
 
13
 * it under the terms of the GNU General Public License as published by
 
14
 * the Free Software Foundation; either version 2 of the License, or
 
15
 * (at your option) any later version.
 
16
 *
 
17
 * This program is distributed in the hope that it will be useful,
 
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
 * GNU General Public License for more details.
 
21
 *
 
22
 * You should have received a copy of the GNU General Public License
 
23
 * along with this program; if not, write to the Free Software
 
24
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
25
 */
 
26
 
 
27
 
 
28
#include "ggzcore.h"
 
29
 
 
30
void game_init(GGZModule *module, GGZGameType *type, int index, const char *nick, int bot);
 
31
 
 
32
void game_quit(void);
 
33
 
 
34
void game_destroy(void);
 
35
 
 
36
void game_channel_connected(int fd);
 
37
void game_channel_ready(int fd);
 
38
void game_register(GGZGame *game);
 
39