about summary refs log tree commit diff stats
path: root/windows.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-02-05 23:08:15 +0000
committerJames Booth <boothj5@gmail.com>2012-02-05 23:08:15 +0000
commit134e5d17013866e9df81c683197596c0c3cc2bad (patch)
tree8d2e11492e81993a94540d373473c967b37ba9a6 /windows.h
parent129f0fb0ae5991570298b46af75f3e52c719b83d (diff)
downloadprofani-tty-134e5d17013866e9df81c683197596c0c3cc2bad.tar.gz
Split out window functions
Diffstat (limited to 'windows.h')
-rw-r--r--windows.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/windows.h b/windows.h
new file mode 100644
index 00000000..e9960bb0
--- /dev/null
+++ b/windows.h
@@ -0,0 +1,16 @@
+#ifndef WINDOWS_H
+#define WINDOWS_h
+
+// windows
+WINDOW *title_bar;
+WINDOW *cmd_bar;
+WINDOW *cmd_win;
+WINDOW *main_win;
+
+// window creation
+void create_title_bar(void);
+void create_command_bar(void);
+void create_command_window(void);
+void create_main_window(void);
+
+#endif