/** @name handler * @{ */ #include #ifdef STILL_TO_DO /* * It ought to be possible to just #include these files, * but they rely on various other types being defined first. * * I really can't face tracking down the dependency chain * just at the moment. * So we'll just have to live with the warnings.... */ #include #include #include #include #else void netsnmp_init_debug_helper(void); void netsnmp_init_serialize(void); void netsnmp_init_read_only_helper(void); void netsnmp_init_bulk_to_next_helper(void); #endif /** call the initialization sequence for all handlers with init_ routines. */ void netsnmp_init_helpers(void) { netsnmp_init_debug_helper(); netsnmp_init_serialize(); netsnmp_init_read_only_helper(); netsnmp_init_bulk_to_next_helper(); } /** @} */