Split out window functions

This commit is contained in:
James Booth
2012-02-05 23:08:15 +00:00
parent 129f0fb0ae
commit 134e5d1701
5 changed files with 71 additions and 55 deletions

16
windows.h Normal file
View File

@@ -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