~ubuntu-branches/ubuntu/vivid/berusky/vivid

« back to all changes in this revision

Viewing changes to src/berusky.h

  • Committer: Bazaar Package Importer
  • Author(s): Bart Martens
  • Date: 2011-08-27 08:09:19 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110827080919-1a7tyg1mm3ndg5sp
Tags: 1.3-1
* New upstream release.
* Switch to dpkg-source 3.0 (quilt) format.
* debian/berusky.6: Added.  Closes: #605982.
* debian/patches/02_endian.diff: Removed.
* debian/patches/03_arraysize.diff: Removed.
* debian/patches/06_newline.diff: Removed.
* debian/patches/08_backspace.diff: Removed.
* debian/patches/09_hints.diff: Removed.
* debian/patches/10_typos.diff: Added.  Closes: #616350.
* debian/berusky.desktop: Updated.  Closes: #616343.
* debian/control: Build-Depends: libgtk2.0-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
#include <stdio.h>
44
44
#include <stdlib.h>
45
45
#include <assert.h>
 
46
#include <string.h>
 
47
#include <locale.h>
 
48
 
 
49
#include "portability.h"
 
50
 
 
51
#ifdef LINUX
 
52
 
46
53
#include <syslog.h>
47
 
#include <string.h>
48
 
 
49
54
#include <libintl.h>
50
 
#include <locale.h>
51
 
 
52
55
#include <SDL/SDL.h>
53
56
 
54
57
#define _(string) gettext (string)
55
58
 
 
59
#elif WINDOWS
 
60
 
 
61
#include "SDL.h"
 
62
#define _(string) (string)
 
63
 
 
64
#endif
 
65
 
56
66
/* Basic header files
57
67
*/
58
68
#include "defines.h"
142
152
  bool   level_load(char *p_level);
143
153
  bool   levelset_load(int set);
144
154
  bool   levelset_is_custom(void);
145
 
  
 
155
 
 
156
  void   levelset_set_level(int level);
146
157
  int    levelset_get_level(void);
147
158
  int    levelset_get_set(void);
148
159
  int    levelset_get_levelnum(void);