screenshot.h
author tron
Fri, 03 Dec 2004 07:43:00 +0000
changeset 536 aef4753985d3
parent 430 75820dedf4f1
child 2121 c86a863485ee
permissions -rw-r--r--
(svn r907) Sprinkle holy ANSI water:
- "inline" must before the return type (and after "static")
- Initialise all struct members, not just some of them
- Remove (one) spurious semicolon
#ifndef SCREENSHOT_H
#define SCREENSHOT_H

void InitializeScreenshotFormats(void);

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

bool MakeScreenshot(void);
bool MakeWorldScreenshot(int left, int top, int width, int height, int zoom);

#endif