snap_svc_reg_handler.h

来自「一个学习SNMP项目:tmoerlan.」· C头文件 代码 · 共 35 行

H
35
字号
/*	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 + =
减小字号Ctrl + -
显示快捷键?