~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/gfxinit.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Matthijs Kooijman, Jordi Mallach
  • Date: 2009-04-15 18:22:10 UTC
  • mfrom: (1.1.6 upstream) (2.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090415182210-22ktb8kdbp2tf3bm
[ Matthijs Kooijman ]
* New upstream release.
* Remove Debian specific desktop file, upstream provides one now. 
* Add debian/watch file.

[ Jordi Mallach ]
* Bump Standards-Version to 3.8.1, with no changes required.
* Move to debhelper compat 7. Bump Build-Depends accordingly.
* Use dh_prep.
* Add "set -e" to config script.
* Remove a few extra doc files that get installed by upstream Makefile.
* Add more complete copyright information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: gfxinit.h 11684 2007-12-23 10:56:02Z rubidium $ */
 
1
/* $Id: gfxinit.h 15389 2009-02-07 01:01:02Z peter1138 $ */
2
2
 
3
 
/** @file gfxinit.h */
 
3
/** @file gfxinit.h Functions related to the graphics initialization. */
4
4
 
5
5
#ifndef GFXINIT_H
6
6
#define GFXINIT_H
11
11
void GfxLoadSprites();
12
12
void LoadSpritesIndexed(int file_index, uint *sprite_id, const SpriteID *index_tbl);
13
13
 
 
14
void FindGraphicsSets();
 
15
bool SetGraphicsSet(const char *name);
 
16
char *GetGraphicsSetsList(char *p, const char *last);
 
17
 
 
18
int GetNumGraphicsSets();
 
19
int GetIndexOfCurrentGraphicsSet();
 
20
const char *GetGraphicsSetName(int index);
 
21
 
 
22
extern char *_ini_graphics_set;
 
23
 
14
24
#endif /* GFXINIT_H */