git-svn-id: http://172.17.0.253/svn/soft_pkgs/sys_nicmonitor@146 09c3743a-b0dd-45d3-b506-aa74c7a2a6ef
19 lines
276 B
C
19 lines
276 B
C
#ifndef NIC_SHM_H
|
|
#define NIC_SHM_H
|
|
|
|
#include "sys_netcard.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int init_nic_info(char *share_path, char *sem_path);
|
|
int get_nic_info(char *nic_name, NETCARD_INFO *net_info);
|
|
void rls_nic_info(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|