04b7641e85
- Add x11proto to redbear-full.toml package list - libxau recipe updated with x11proto dependency and custom build script - Fixes libxau build failure: 'Package xproto was not found'
33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
#ifndef MC__SKIN_INTERNAL_H
|
|
#define MC__SKIN_INTERNAL_H
|
|
|
|
#include "lib/global.h"
|
|
#include "lib/skin.h"
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
gboolean mc_skin_ini_file_load (mc_skin_t * mc_skin);
|
|
gboolean mc_skin_ini_file_parse (mc_skin_t * mc_skin);
|
|
void mc_skin_set_hardcoded_skin (mc_skin_t * mc_skin);
|
|
|
|
gboolean mc_skin_ini_file_parse_colors (mc_skin_t * mc_skin);
|
|
gboolean mc_skin_color_parse_ini_file (mc_skin_t * mc_skin);
|
|
|
|
void mc_skin_hardcoded_ugly_lines (mc_skin_t * mc_skin);
|
|
void mc_skin_hardcoded_space_lines (mc_skin_t * mc_skin);
|
|
void mc_skin_hardcoded_blackwhite_colors (mc_skin_t * mc_skin);
|
|
|
|
void mc_skin_colors_old_configure (mc_skin_t * mc_skin);
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
#endif /* MC__SKIN_INTERNAL_H */
|