#include "gvcommon.h"
#include "gvcjob.h"
#include "color.h"
+#include <stdbool.h>
/* active plugin headers */
typedef struct gvplugin_active_layout_s {
GVCOMMON_t common;
char *config_path;
- boolean config_found;
+ bool config_found;
/* gvParseArgs */
char **input_filenames; /* null terminated array of input filenames */
/* builtins don't require LTDL */
gvconfig_plugin_install_builtins(gvc);
- gvc->config_found = FALSE;
+ gvc->config_found = false;
#ifdef ENABLE_LTDL
if (gvc->common.demand_loading) {
/* see if there are any new plugins */
if (rescan) {
config_rescan(gvc, gvc->config_path);
- gvc->config_found = TRUE;
+ gvc->config_found = true;
gvtextlayout_select(gvc); /* choose best available textlayout plugin immediately */
return;
}
agerr(AGERR, "%s read error.\n", gvc->config_path);
}
else {
- gvc->config_found = TRUE;
+ gvc->config_found = true;
config_text[sz] = '\0'; /* make input into a null terminated string */
rc = gvconfig_plugin_install_from_config(gvc, config_text);
}