tron@430: #ifndef SCREENSHOT_H tron@430: #define SCREENSHOT_H tron@430: tron@430: void InitializeScreenshotFormats(void); tron@430: tron@430: const char *GetScreenshotFormatDesc(int i); tron@430: void SetScreenshotFormat(int i); tron@430: tron@430: bool MakeScreenshot(void); tron@430: bool MakeWorldScreenshot(int left, int top, int width, int height, int zoom); tron@430: tron@2121: extern char _screenshot_format_name[8]; tron@2121: extern uint _num_screenshot_formats; tron@2121: extern uint _cur_screenshot_format; tron@2121: tron@430: #endif