2004-12-23 13:58:39 +01:00
|
|
|
#ifndef MISC_CALLBACK_FUNC_H
|
|
|
|
#define MISC_CALLBACK_FUNC_H
|
|
|
|
|
|
|
|
#include "bygfoot.h"
|
2004-12-30 17:48:19 +01:00
|
|
|
|
|
|
|
void
|
2005-03-03 13:46:48 +01:00
|
|
|
misc_callback_start_game(void);
|
2004-12-23 13:58:39 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
misc_callback_show_team_list(GtkWidget *widget, const gchar *country_file);
|
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
void
|
|
|
|
misc_callback_add_player(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
misc_callback_remove_user(GdkEventButton *event);
|
|
|
|
|
|
|
|
void
|
|
|
|
misc_callback_pause_live_game(void);
|
|
|
|
|
2005-03-17 21:26:01 +01:00
|
|
|
void
|
|
|
|
misc_callback_improve_stadium(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
misc_callback_update_stadium_window(gboolean capacity);
|
|
|
|
|
2005-04-06 13:14:34 +02:00
|
|
|
void
|
|
|
|
misc_callback_startup_load(const gchar *filename);
|
|
|
|
|
2005-06-20 14:46:57 +02:00
|
|
|
void
|
|
|
|
misc_callback_new_sponsor(void);
|
|
|
|
|
2004-12-23 13:58:39 +01:00
|
|
|
#endif
|