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

« back to all changes in this revision

Viewing changes to src/sdl.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: sdl.h 9556 2007-04-04 01:35:16Z belugas $ */
 
1
/* $Id: sdl.h 15233 2009-01-23 17:32:01Z glx $ */
2
2
 
3
 
/** @file sdl.h */
 
3
/** @file sdl.h SDL support. */
4
4
 
5
5
#ifndef SDL_H
6
6
#define SDL_H
7
7
 
8
 
const char* SdlOpen(uint32 x);
 
8
const char *SdlOpen(uint32 x);
9
9
void SdlClose(uint32 x);
10
10
 
11
11
#ifdef WIN32
48
48
                int (SDLCALL *SDL_SetColorKey)(SDL_Surface *, Uint32, Uint32);
49
49
                void (SDLCALL *SDL_WM_SetIcon)(SDL_Surface *, Uint8 *);
50
50
                Uint32 (SDLCALL *SDL_MapRGB)(SDL_PixelFormat *, Uint8, Uint8, Uint8);
 
51
                int (SDLCALL *SDL_VideoModeOK)(int, int, int, Uint32);
51
52
        };
52
53
 
53
54
        extern SDLProcs sdl_proc;