Revert "Revert "and added files""
[bcm963xx.git] / userapps / opensource / net-snmp / agent / helpers / all_helpers.c
1 /** @name handler
2  *  @{ */
3
4 #include <net-snmp/net-snmp-config.h>
5
6 #ifdef STILL_TO_DO
7         /*
8          * It ought to be possible to just #include these files,
9          *   but they rely on various other types being defined first.
10          *
11          * I really can't face tracking down the dependency chain
12          *   just at the moment.
13          * So we'll just have to live with the warnings....
14          */
15 #include <net-snmp/agent/debug_handler.h>
16 #include <net-snmp/agent/serialize.h>
17 #include <net-snmp/agent/read_only.h>
18 #include <net-snmp/agent/bulk_to_next.h>
19
20 #else
21
22 void  netsnmp_init_debug_helper(void);
23 void  netsnmp_init_serialize(void);
24 void  netsnmp_init_read_only_helper(void);
25 void  netsnmp_init_bulk_to_next_helper(void);
26
27 #endif
28
29 /** call the initialization sequence for all handlers with init_ routines. */
30 void
31 netsnmp_init_helpers(void)
32 {
33     netsnmp_init_debug_helper();
34     netsnmp_init_serialize();
35     netsnmp_init_read_only_helper();
36     netsnmp_init_bulk_to_next_helper();
37 }
38
39 /** @} */