Files
cproof/windows.h
2012-02-06 22:29:05 +00:00

15 lines
219 B
C

#ifndef WINDOWS_H
#define WINDOWS_h
// windows
WINDOW *title_bar;
WINDOW *cmd_bar;
WINDOW *cmd_win;
WINDOW *main_win;
// window creation
void initgui(void);
void show_incomming_msg(char *from, char *message);
#endif