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

« back to all changes in this revision

Viewing changes to src/company_gui.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: company_gui.h 15903 2009-03-30 23:15:05Z rubidium $ */
 
2
 
 
3
/** @file company_gui.h GUI Functions related to companies. */
 
4
 
 
5
#ifndef COMPANY_GUI_H
 
6
#define COMPANY_GUI_H
 
7
 
 
8
#include "company_type.h"
 
9
 
 
10
uint16 GetDrawStringCompanyColour(CompanyID company);
 
11
void DrawCompanyIcon(CompanyID c, int x, int y);
 
12
 
 
13
void ShowCompanyStations(CompanyID company);
 
14
void ShowCompanyFinances(CompanyID company);
 
15
void ShowCompany(CompanyID company);
 
16
 
 
17
void InvalidateCompanyWindows(const Company *c);
 
18
void DeleteCompanyWindows(CompanyID company);
 
19
 
 
20
#endif /* COMPANY_GUI_H */