OpenTTD
screenshot.h
Go to the documentation of this file.
1 /* $Id: screenshot.h 26525 2014-04-27 15:13:46Z frosch $ */
2 
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  */
9 
12 #ifndef SCREENSHOT_H
13 #define SCREENSHOT_H
14 
16 
17 const char *GetCurrentScreenshotExtension();
18 
27 };
28 
30 bool MakeHeightmapScreenshot(const char *filename);
31 bool MakeScreenshot(ScreenshotType t, const char *name);
32 
33 extern char _screenshot_format_name[8];
34 extern uint _num_screenshot_formats;
35 extern uint _cur_screenshot_format;
36 extern char _full_screenshot_name[MAX_PATH];
37 
38 #endif /* SCREENSHOT_H */