summaryrefslogtreecommitdiff
path: root/src/screenshot.h
blob: 64df2ba45768b2e0fd27dcb240dd10058f0ecdf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __SCREENSHOT_H__
#define __SCREENSHOT_H__

#include "graphics.h"

#ifdef __cplusplus
extern "C" {
#endif

int saveScreenShot();
void destroyScreenShot();
void getScreenShot(unsigned short *screen);
const char *getScreenShotsDir();

#ifdef __cplusplus
}
#endif

#endif