⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 snap_svc_reg_handler.h

📁 一个学习SNMP项目:tmoerlan.
💻 H
字号:
/*	snap service handler	registration handler header file	(c) 2003 Willem de Bruijn	all code falls under the BSD License*/#include <snap_svc.h>    /* library list */	/* we only keep 1 pointer to the complete list of libraries */	typedef void* tDll;	typedef tDll* tDllList;	/* initialization and teardown USE THESE! */	void snap_svc_register_init();	void snap_svc_register_fini();		/* pass-through dll exported functions */	void* snap_svc_register_returnlaststruct();	void* snap_svc_register_freelaststruct();		/* library specific registration functions */	int snap_svc_registerlib(void* hDll);	int snap_svc_unregisterlib(void* hDll);		/* register all libraries in a specified directory */	int snap_svc_registeralllibs(char* strDirectory);	int snap_svc_unregisteralllibs();	/* register everything */	void snap_svc_registerall();	void snap_svc_unregisterall();	void snap_svc_reregisterall();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -