19 lines
406 B
C
19 lines
406 B
C
/*
|
|
* Dynamic Loadable Agent Modules MIB (UCD-DLMOD-MIB) - dlmod.h
|
|
*
|
|
*/
|
|
|
|
#ifndef MIBGROUP_DLMOD_H
|
|
#define MIBGROUP_DLMOD_H
|
|
|
|
#if (!defined(HAVE_DLFCN_H) || !defined(HAVE_DLOPEN)) && !defined(WIN32)
|
|
config_error(Dynamic modules not supported on this platform)
|
|
#endif
|
|
|
|
config_add_mib(UCD-DLMOD-MIB)
|
|
|
|
void init_dlmod(void);
|
|
void shutdown_dlmod(void);
|
|
|
|
#endif /* MIBGROUP_DLMOD_H */
|