summaryrefslogtreecommitdiffstats
path: root/door.h
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2015-01-10 15:10:43 +0900
committerFreeArtMan <dos21h@gmail.com>2015-01-10 15:10:43 +0900
commitbd040d066dc5ba642c4fadca26ddd4e1963e5231 (patch)
tree47ee71980b1e8fdef4f3fad7cb869f1b91e97deb /door.h
parent3e61314544a9151cb5a49db12a58c4fb74d6bee3 (diff)
downloadmicrobbs-bd040d066dc5ba642c4fadca26ddd4e1963e5231.tar.gz
microbbs-bd040d066dc5ba642c4fadca26ddd4e1963e5231.zip
Added door game support upto 9 games
Diffstat (limited to 'door.h')
-rw-r--r--door.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/door.h b/door.h
new file mode 100644
index 0000000..fee893c
--- /dev/null
+++ b/door.h
@@ -0,0 +1,24 @@
+#ifndef __MICROBBS_DOOR_H
+#define __MICROBBS_DOOR_H
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdint.h>
+#include <dirent.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <termios.h>
+
+
+#include "kconfig.h"
+#include "list.h"
+#include "sds.h"
+
+#include "libterm/term.h"
+#include "libterm/term_io.h"
+
+int bbs_door( term_screen *ts, const char *dir_name );
+
+#endif \ No newline at end of file