win32
[censuslogo] / src / app.h
diff --git a/src/app.h b/src/app.h
new file mode 100644 (file)
index 0000000..70f89ed
--- /dev/null
+++ b/src/app.h
@@ -0,0 +1,24 @@
+#ifndef APP_H_
+#define APP_H_
+
+/* undefine to build without anti-aliasing */
+#define MSAA
+
+int win_width, win_height;
+int nverts;
+int msaa;
+int fullscr;
+long msec;
+
+int app_init(void);
+void app_display(void);
+void app_reshape(int x, int y);
+void app_keyboard(int key, int pressed);
+int app_parse_args(int argc, char **argv);
+
+/* defined in main_*.c */
+void app_quit(void);
+void app_fullscreen(void);
+void app_windowed(void);
+
+#endif /* APP_H_ */