home · contact · privacy
Sorted out library dependencies / includes. Include every header file needed by each...
[plomrogue] / src / draw_wins.h
index 64f332ccfc7283ef4c1bc4e7302020ee23f42b49..dea248a4a9c66bc1f2eb3004990d3d50d6fc919d 100644 (file)
@@ -1,6 +1,15 @@
+#ifndef DRAW_WINS_H
+#define DRAW_WINS_H
+
+#include <stdint.h>
+
+struct Win;
+
 void draw_with_linebreaks (struct Win *, char *, uint16_t);
 void draw_text_from_bottom (struct Win *, char *);
 void draw_log_win (struct Win *);
 void draw_map_win (struct Win *);
 void draw_info_win (struct Win *);
 void draw_keys_win (struct Win *);
+
+#endif