1
0
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Added header define to window.h

This commit is contained in:
James Booth 2012-11-25 23:29:02 +00:00
parent 58655a90c3
commit 4aee534725

View File

@ -20,6 +20,9 @@
*
*/
#ifndef WINDOW_H
#define WINDOW_H
#include "ui.h"
typedef struct prof_win_t {
@ -35,3 +38,5 @@ typedef struct prof_win_t {
ProfWin* window_create(const char * const title, int cols, win_type_t type);
void window_free(ProfWin *window);
#endif