~vcs-imports-ii/gnubg/trunk

3709 by c_anthon
Extract player stats from the sql db
1
/*
2
 * gtkrelational.h
3
 *
4
 * by Christian Anthon <anthon@kiku.dk>, 2006.
5
 *
6
 * This program is free software; you can redistribute it and/or modify
3944 by ace
*** empty log message ***
7
 * it under the terms of version 3 or later of the GNU General Public License as
3709 by c_anthon
Extract player stats from the sql db
8
 * published by the Free Software Foundation.
9
 *
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.
14
 *
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
18
 *
5379 by mdpetch
Standardized the code formatting with indent -kr -l120 -fc1 -sc -nut -psl
19
 * $Id: gtkrelational.h,v 1.12 2013/06/16 02:16:16 mdpetch Exp $
3709 by c_anthon
Extract player stats from the sql db
20
 */
21
4038 by Superfly_Jon
Misc changes
22
#include "relational.h"
23
4090 by Superfly_Jon
Move relational code out of database.py and into relational.c
24
#include <gtk/gtk.h>
25
5158 by plm
Fix bug #36201
26
#ifndef GTKRELATIONAL_H
27
#define GTKRELATIONAL_H
4029 by c_anthon
cleanup gtkgame.h
28
extern void GtkRelationalAddMatch(gpointer p, guint n, GtkWidget * pw);
29
extern void GtkShowRelational(gpointer p, guint n, GtkWidget * pw);
4102 by c_anthon
relational db changes and compiler warnings
30
extern GtkWidget *RelationalOptions(void);
31
extern void RelationalOptionsShown(void);
32
extern void RelationalSaveOptions(void);
5379 by mdpetch
Standardized the code formatting with indent -kr -l120 -fc1 -sc -nut -psl
33
extern void GtkShowQuery(RowSet * pRow);
3709 by c_anthon
Extract player stats from the sql db
34
#endif