1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
281 B

#ifndef _DISPLAY_CALLBACK_H_
#define _DISPLAY_CALLBACK_H_
#include <string>
typedef struct display_callback {
void (*handle_refresh_screen)(int idx, std::string msg);
void (*handle_refresh_screen_hl)(int idx, std::string msg, bool highlight);
} display_callback;
#endif