]> Pileus Git - ~andy/gtk/blob - gdk/x11/checksettings.c
8b82e2cd02b539fdb6b97606c922e3f4e9afb8e8
[~andy/gtk] / gdk / x11 / checksettings.c
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 2006 Tim Janik
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include "config.h"
21
22 #include "gdktypes.h"
23
24 #include <glib.h>
25 #include <string.h>
26
27 #include "gdksettings.c"
28
29 int
30 main (int   argc,
31       char *argv[])
32 {
33   guint i, accu = 0;
34
35   for (i = 0; i < GDK_SETTINGS_N_ELEMENTS(); i++)
36     {
37       if (gdk_settings_map[i].xsettings_offset != accu)
38         g_error ("settings_map[%u].xsettings_offset != %u\n", i, accu);
39       accu += strlen (gdk_settings_names + accu) + 1;
40       if (gdk_settings_map[i].gdk_offset != accu)
41         g_error ("settings_map[%u].gdk_offset != %u\n", i, accu);
42       accu += strlen (gdk_settings_names + accu) + 1;
43     }
44
45   return 0;
46 }