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

« back to all changes in this revision

Viewing changes to src/timetable.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: timetable.h 10237 2007-06-20 19:26:25Z maedhros $ */
 
1
/* $Id: timetable.h 12971 2008-05-06 15:11:33Z rubidium $ */
2
2
 
3
 
/** @file timetable.h */
 
3
/** @file timetable.h Functions related to time tabling. */
4
4
 
5
5
#ifndef TIMETABLE_H
6
6
#define TIMETABLE_H
7
7
 
8
8
void ShowTimetableWindow(const Vehicle *v);
9
9
void UpdateVehicleTimetable(Vehicle *v, bool travelling);
 
10
void SetTimetableParams(int param1, int param2, uint32 time);
10
11
 
11
12
#endif /* TIMETABLE_H */