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

📄 dll_impr.h

📁 路由器协议平台igmp协议设计实现源码。
💻 H
字号:
/*
 $Log:: /OEM Source Code/igmp/DLL_IMPR.H                                                           $
 * 
 * 1     4/23/98 9:53p Release Engineer
 * Initial release
 * IGMP v4.1.0
 */
/************************************************************************/
/*  Copyright (C) 1997-1998 RouterWare, Inc.                            */
/*  Unpublished - rights reserved under the Copyright Laws of the       */
/*  United States.  Use, duplication, or disclosure by the              */
/*  Government is subject to restrictions as set forth in               */
/*  subparagraph (c)(1)(ii) of the Rights in Technical Data and         */
/*  Computer Software clause at 252.227-7013.                           */
/*  RouterWare, Inc., 3961 MacArthur Blvd. Suite 212, Newport Beach, CA */
/************************************************************************/
#if defined (_IGMP_H_)

#define __IMPORT_TABLE__
	#include <imp_lsl.h>
	#include <imp_rwut.h>
	#include <imp_ip.h>
	#include <imp_mfapi.h>
#undef __IMPORT_TABLE__

#define __EXPORT_TABLE__

#include <imp_igmphost.h>

#undef __EXPORT_TABLE__

typedef struct WINROUTER_IMPORT_TABLE
{
	#if defined (__IMPORT_LSL__)

		UINT									lsl_api_version;

		char									*cptr_lsl_name;

		struct LSL_IMPORT_TABLE 		*sptr_lsl;
	
	#endif

	#if defined (__IMPORT_RWUTILS__)

		UINT									rwutils_api_version;

		char									*cptr_rwutils_name;

		struct RWUTILS_IMPORT_TABLE 	*sptr_rwutils;
	
	#endif

	#if defined (__IMPORT_IP__)

		UINT									ip_api_version;

		char									*cptr_ip_name;

		struct IP_IMPORT_TABLE 			*sptr_ip;
	
	#endif

	#if defined (__IMPORT_RWMFAPI__)

		ULONG									rwmfapi_api_version;

		char									*cptr_rwmfapi_name;

		struct RWMFAPI_IMPORT_TABLE 	*sptr_rwmfapi;

	#endif


	char										*cptr_end_of_table;

	void										*vptr_end_of_table;
	
} WINROUTER_IMPORT_TABLE;


#if !defined (GLOBAL_FILE)
	extern WINROUTER_IMPORT_TABLE winrouter_import_table;
#else
	WINROUTER_IMPORT_TABLE winrouter_import_table =
	{
		#if defined (__IMPORT_LSL__)
		{LSL_API_VERSION},
		{"LSL"},
		{NULL},
		#endif

		#if defined (__IMPORT_RWUTILS__)
		{RWUTILS_API_VERSION},
		{"RWUTILS"},
		{NULL},
		#endif

		#if defined (__IMPORT_IP__)
		{IP_API_VERSION},
		{"IP"},
		{NULL},
		#endif

		#if defined (__IMPORT_RWMFAPI__)
		{RWMFAPI_API_VERSION},
		{"RWMFAPI"},
		{NULL},
		#endif

	/* end of table */

		{NULL},
		{NULL}
	};
#endif

#endif /* _IGMP_H_ */

⌨️ 快捷键说明

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