diff options
author | Simon Howard | 2006-05-29 19:31:45 +0000 |
---|---|---|
committer | Simon Howard | 2006-05-29 19:31:45 +0000 |
commit | 936e7e116d8860f858ce9d8b39b1bac39d7e66bf (patch) | |
tree | 033895524592ecf3c408d48e580c45bf097b3c79 | |
parent | 3a5668eeb63a3deae8861dd9a7f176bb773df898 (diff) | |
download | chocolate-doom-936e7e116d8860f858ce9d8b39b1bac39d7e66bf.tar.gz chocolate-doom-936e7e116d8860f858ce9d8b39b1bac39d7e66bf.tar.bz2 chocolate-doom-936e7e116d8860f858ce9d8b39b1bac39d7e66bf.zip |
Shut up compiler warnings.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 540
-rw-r--r-- | textscreen/examples/calculator.c | 1 | ||||
-rw-r--r-- | textscreen/txt_desktop.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/textscreen/examples/calculator.c b/textscreen/examples/calculator.c index 2cc1392a..18f63aa1 100644 --- a/textscreen/examples/calculator.c +++ b/textscreen/examples/calculator.c @@ -4,6 +4,7 @@ #include "txt_button.h" #include "txt_desktop.h" #include "txt_label.h" +#include "txt_separator.h" typedef enum { diff --git a/textscreen/txt_desktop.h b/textscreen/txt_desktop.h index 37da146a..ecf4ee6d 100644 --- a/textscreen/txt_desktop.h +++ b/textscreen/txt_desktop.h @@ -32,6 +32,7 @@ void TXT_RemoveDesktopWindow(txt_window_t *win); void TXT_SetDesktopTitle(char *title); void TXT_DrawDesktop(void); void TXT_GUIMainLoop(void); +void TXT_DispatchEvents(void); void TXT_ExitMainLoop(void); #endif /* #ifndef TXT_DESKTOP_T */ |