missing NULL terminator in set_config_x
[geda-gaf.git] / gschem / src / globals.c
bloba67da3a9af8a6ef6e4f494eb9665f5cbc669a965
1 /* gEDA - GPL Electronic Design Automation
2 * gschem - gEDA Schematic Capture
3 * Copyright (C) 1998-2010 Ales Hvezda
4 * Copyright (C) 1998-2020 gEDA Contributors (see ChangeLog for details)
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 /*! \todo Add global variable documentation!!!
23 #include <config.h>
24 #include <stdio.h>
26 #include "gschem.h"
28 /* window list */
29 GList *global_window_list = NULL;
31 /* Manager for recently used files */
32 GtkRecentManager *recent_manager = NULL;
34 char *rc_filename = NULL;
35 char *output_filename = NULL;
37 /* colors */
38 GdkColor white;
39 GdkColor black;
41 int logging_dest = LOG_WINDOW;
43 /* command line options */
44 int quiet_mode = FALSE;
45 int verbose_mode = FALSE;
46 int auto_place_mode = FALSE;
48 /* Hooks */
49 SCM complex_place_list_changed_hook;