Files @ r5446:b0d40234a58f
Branch filter:

Location: cpp/openttd-patchpack/source/screenshot.h

miham
(svn r7699) WebTranslator2 update to 2006-12-31 15:10:33
galician - 36 fixed by Condex (36)
german - 4 fixed by chu (4)
/* $Id$ */

#ifndef SCREENSHOT_H
#define SCREENSHOT_H

void InitializeScreenshotFormats(void);

const char *GetScreenshotFormatDesc(int i);
void SetScreenshotFormat(int i);

typedef enum ScreenshotType {
	SC_NONE,
	SC_VIEWPORT,
	SC_WORLD
} ScreenshotType;

bool MakeScreenshot(void);
void SetScreenshotType(ScreenshotType t);
bool IsScreenshotRequested(void);

extern char _screenshot_format_name[8];
extern uint _num_screenshot_formats;
extern uint _cur_screenshot_format;

#endif /* SCREENSHOT_H */