2022-05-19 01:51:26 -07:00
|
|
|
#ifndef DISPLAY_MONITOR_H
|
|
|
|
#define DISPLAY_MONITOR_H
|
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
namespace fallout {
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
int displayMonitorInit();
|
|
|
|
int displayMonitorReset();
|
|
|
|
void displayMonitorExit();
|
|
|
|
void displayMonitorAddMessage(char* string);
|
|
|
|
void displayMonitorDisable();
|
|
|
|
void displayMonitorEnable();
|
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
} // namespace fallout
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
#endif /* DISPLAY_MONITOR_H */
|