src/news_gui.h
author rubidium
Thu, 17 Jul 2008 13:47:04 +0000
changeset 9648 c79160082c0f
parent 8976 1a8367713b73
permissions -rw-r--r--
(svn r13715) -Fix [FS#2129]: C-like strings had to be rebound each time they were printed, otherwise the text could change due to the few number of slots that could be used to bind.
-Codechange: remove all BindCString and related functions and replace it by RAW_STRING which prints the C-string raw pointer that is on the 'print stack'.
8976
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
     1
/* $Id$ */
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
     2
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
     3
/** @file news_gui.h GUI functions related to the news. */
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
     4
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
     5
#ifndef NEWS_GUI_H
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
     6
#define NEWS_GUI_H
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
     7
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
     8
void ShowLastNewsMessage();
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
     9
void ShowMessageOptions();
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
    10
void ShowMessageHistory();
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
    11
1a8367713b73 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium
parents:
diff changeset
    12
#endif /* NEWS_GUI_H */