source: titan/titan/about.h @ 38972

Last change on this file since 38972 was 35007, checked in by Stephan, 9 years ago

delete blank

File size: 294 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, 1000, 600, 0, 0);
10        free(tmpstr);
11
12        return 0;
13}
14
15#endif
16
Note: See TracBrowser for help on using the repository browser.