#include "vhex/display.h" #include "vhex/module.h" /* module init */ /* __display_init() : initialize the display */ static void __display_init(void) { /* Nothing to do here ? */ } /* __display_quit() : uninit the display */ static void __display_quit(void) { /* Nothing to do here ? */ } /* declare the display module */ struct vhex_module mod_display = { .name = "display", .init = &__display_init, .quit = &__display_quit, }; VHEX_DECLARE_MODULE(03, mod_display);