Rearrange storage of reserved tracks for railway tiles
[openttd/fttd.git] / src / date_gui.h
blob314baba3cacaa9cf64c875d3de49d44bf7971b37
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
5 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8 */
10 /** @file date_gui.h Functions related to the graphical selection of a date. */
12 #ifndef DATE_GUI_H
13 #define DATE_GUI_H
15 #include "date_type.h"
16 #include "window_type.h"
18 /**
19 * Callback for when a date has been chosen
20 * @param w the window that sends the callback
21 * @param date the date that has been chosen
23 typedef void SetDateCallback(const Window *w, Date date);
25 void ShowSetDateWindow(Window *parent, int window_number, Date initial_date, Year min_year, Year max_year, SetDateCallback *callback);
27 #endif /* DATE_GUI_H */