tron@2186: /* $Id$ */ tron@2186: 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: belugas@4184: typedef enum ScreenshotType { belugas@4184: SC_NONE, belugas@4184: SC_VIEWPORT, belugas@4184: SC_WORLD belugas@4184: } ScreenshotType; belugas@4184: tron@430: bool MakeScreenshot(void); belugas@4184: void SetScreenshotType(ScreenshotType t); belugas@4184: bool IsScreenshotRequested(void); 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: Darkvater@2436: #endif /* SCREENSHOT_H */