#include #include #include #ifndef __UI_HPP_ #define __UI_HPP_ namespace ui { extern int g_maxLines, g_maxCols, g_begCol, g_begLine, g_menuWith; // int8_t error; extern bool g_mensaje; int8_t initUI(const int8_t *menu_principal, const int8_t *menu_error); void closeUI(); std::vector showCentralInputBox(std::vector *textos, const int8_t *num_box, std::vector *elems, const int8_t *color_error); std::vector showCentralInputBox(std::vector *textos, const int8_t *num_box, std::vector *elems, long title_size, const int8_t *color_error); void showCenterMensaje(std::vector *mensaje, const int8_t *menu_color); void showTopTitle(const std::vector *titulo); } // namespace ui #endif // __UI_HPP_