about summary refs log tree commit diff stats
path: root/main.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-02-09 22:24:03 +0000
committerJames Booth <boothj5@gmail.com>2012-02-09 22:24:03 +0000
commit5d9c7ffd9c27c1f097f71ccf940525121faefd12 (patch)
treef1afd45d6bf2eafa63c49e9626b0fc231727d321 /main.c
parente989198923302af7e4fdbcd72cd05725cba5e6e8 (diff)
downloadprofani-tty-5d9c7ffd9c27c1f097f71ccf940525121faefd12.tar.gz
Renamed some source files
Diffstat (limited to 'main.c')
-rw-r--r--main.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/main.c b/main.c
new file mode 100644
index 00000000..8cac8539
--- /dev/null
+++ b/main.c
@@ -0,0 +1,16 @@
+#include "log.h"
+#include "windows.h"
+#include "profanity.h"
+
+int main(void)
+{   
+    log_init();
+    gui_init();
+
+    profanity_start();
+    
+    gui_close();
+    log_close();
+
+    return 0;
+}