ospf_kernel_callback_def.h

来自「vxworks下ospf协议栈」· C头文件 代码 · 共 41 行

H
41
字号
/* ospf_kernel_callback_def.h - OSPF Header File for Interface with the Kernel * Layer Components *//* Copyright 2001 - 2003 Wind River Systems, Inc. */#include "copyright_wrs.h"/* * modification history * -------------------- * 01a,21sept01,mist  written.*/ /*  * DESCRIPTION  * This Header File contains the declarations of all Wrapper functions written  * for the lower  layer functions.  *  */#if !defined (_OSPF_KERNEL_CALLBACK_DEF_H_)#define _OSPF_KERNEL_CALLBACK_DEF_H_#if defined  VIRTUAL_STACKtypedef int (*FP_OSPF_RECEIVE) (register struct mbuf *message_block);typedef int (*FP_OSPF_SEND) (register struct mbuf *message_block);typedef struct OSPF_CALLBACK_IF{    int             ospfEnabled;    FP_OSPF_RECEIVE     pOSpfReceive;    FP_OSPF_SEND        pOSpfSend;} OSPF_CALLBACK_IF;#endif /* VIRTUAL_STACK */#endif /* _OSPF_KERNEL_CALLBACK_DEF_H_ */

⌨️ 快捷键说明

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