aboutsummaryrefslogtreecommitdiff
path: root/gfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx.h')
-rw-r--r--gfx.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gfx.h b/gfx.h
index 6164c41ee4..abd8d68c6d 100644
--- a/gfx.h
+++ b/gfx.h
@@ -20,6 +20,10 @@
*
*/
+#ifndef GFX_H
+#define GFX_H
+
+
enum VideoMode { /* Video scalers */
VIDEO_SCALE = 0,
VIDEO_2XSAI = 1,
@@ -180,3 +184,7 @@ struct Gdi {
dbClear = 4
};
};
+
+void blit(byte *dst, byte *src, int w, int h);
+
+#endif