- Remove shared/str.h where not used. - Remove shared/debug.h from all files as it has been completely replaced by shared/report.h (it will be removed later). - Add more doxygen comments to shared/* and clients/lcdproc/*. - Include static functions in doxygen output.
10 lines
187 B
C
10 lines
187 B
C
#ifndef MODE_H
|
|
#define MODE_H
|
|
|
|
int mode_init(void);
|
|
void mode_close(void);
|
|
int update_screen(ScreenMode *m, int display);
|
|
int credit_screen(int rep, int display, int *flags_ptr);
|
|
|
|
#endif
|