summaryrefslogtreecommitdiff
path: root/src/screenshot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/screenshot.h')
-rw-r--r--src/screenshot.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/screenshot.h b/src/screenshot.h
new file mode 100644
index 0000000..64df2ba
--- /dev/null
+++ b/src/screenshot.h
@@ -0,0 +1,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