source: titan/titan/about.h @ 30698

Last change on this file since 30698 was 30339, checked in by tobayer, 10 years ago

[titan] fix about screen (width)

File size: 291 bytes
Line 
1#ifndef ABOUT_H
2#define ABOUT_H
3
4int screenabout(void)
5{
6        char* tmpstr = NULL;
7        tmpstr = getabout();
8
9        textbox(_("System-Info"), tmpstr, _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 800, 600, 0, 0);
10        free(tmpstr);
11
12        return 0;
13}
14
15#endif
Note: See TracBrowser for help on using the repository browser.