mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-22 23:16:22 +00:00
17 lines
272 B
C
17 lines
272 B
C
#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
|