diff options
Diffstat (limited to 'src/disp.h')
-rw-r--r-- | src/disp.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -33,13 +33,14 @@ #define DISP_ERR (INT_MAX - 2) struct disp { - void *dl_handle; void (*init)(void); void (*display_calc)(int, int); int (*read_input)(void); void (*display_res)(bool, int); void (*destroy)(void); #ifndef NDEBUG + char *name; + void *dl_handle; char *so_path; void *(*pre_reload)(void); void (*post_reload)(void *); |