~ubuntu-branches/debian/jessie/aisleriot/jessie

« back to all changes in this revision

Viewing changes to src/window.h

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach, Jeremy Bicha, Jordi Mallach
  • Date: 2012-04-22 12:49:26 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120422124926-gmr0thwstl91jt1n
Tags: 1:3.4.1-1
[ Jeremy Bicha ]
* New upstream release
* debian/control.in: (Build)-depend on guile-2.0
* debian/*.install: Cards files are now stored as zipped .svg's
* debian/patches/99_format-security.patch: Dropped, applied upstream

[ Jordi Mallach ]
* New upstream release.
* Update copyright to final version of the machine-readable 1.0 spec.
* Bump Standards Version to 3.9.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
GtkWidget *aisleriot_window_new (gboolean freecell_mode);
49
49
 
50
 
void aisleriot_window_set_game (AisleriotWindow * window,
51
 
                                const char *game_file,
52
 
                                GRand *rand);
 
50
void aisleriot_window_set_game_module (AisleriotWindow * window,
 
51
                                       const char *game_module,
 
52
                                       GRand *rand);
53
53
 
54
 
AisleriotGame *aisleriot_window_get_game (AisleriotWindow * window);
 
54
const char *aisleriot_window_get_game_module (AisleriotWindow *window);
55
55
 
56
56
G_END_DECLS
57
57