source: azure_iot_hub_f767zi/trunk/asp_baseplatform/lwip/contrib-2.1.0/ports/win32/pcapif_helper.h@ 457

Last change on this file since 457 was 457, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 508 bytes
Line 
1#ifndef LWIP_PCAPIF_HELPER_H
2#define LWIP_PCAPIF_HELPER_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8struct pcapifh_linkstate;
9
10enum pcapifh_link_event {
11 PCAPIF_LINKEVENT_UNKNOWN,
12 PCAPIF_LINKEVENT_UP,
13 PCAPIF_LINKEVENT_DOWN
14};
15
16struct pcapifh_linkstate* pcapifh_linkstate_init(char *adapter_name);
17enum pcapifh_link_event pcapifh_linkstate_get(struct pcapifh_linkstate* state);
18void pcapifh_linkstate_close(struct pcapifh_linkstate* state);
19
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif /* LWIP_PCAPIF_HELPER_H */
Note: See TracBrowser for help on using the repository browser.