Merge branch 'master' into gtk3
[projects/chimara/chimara.git] / babel / register.c
1 /* register.c    Register modules for the babel handler api\r
2  *\r
3  * 2006 by L. Ross Raszewski\r
4  *\r
5  * This code is freely usable for all purposes.\r
6  *\r
7  * This work is licensed under the Creative Commons Attribution2.5 License.\r
8  * To view a copy of this license, visit\r
9  * http://creativecommons.org/licenses/by/2.5/ or send a letter to\r
10  * Creative Commons,\r
11  * 543 Howard Street, 5th Floor,\r
12  * San Francisco, California, 94105, USA.\r
13  *\r
14  * This file depends on modules.h\r
15  *\r
16  * The purpose of this file is to create the treaty_registry array.\r
17  * This array is a null-terminated list of the known treaty modules.\r
18  */\r
19 \r
20 #include <stdlib.h>\r
21 #include "modules.h"\r
22 \r
23 \r
24 TREATY treaty_registry[] = {\r
25         #define TREATY_REGISTER\r
26         #include "modules.h"\r
27         NULL\r
28         };\r
29 \r
30 TREATY container_registry[] = {\r
31         #define CONTAINER_REGISTER\r
32         #include "modules.h"\r
33         NULL\r
34 \r
35 };\r
36 \r