aboutsummaryrefslogtreecommitdiffstats
path: root/capture_wpcap_packet.h
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-05-21 00:10:17 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-05-21 00:10:17 +0000
commit65f725005a1ea6147a34a4906647be42545ef9fd (patch)
tree634be5a771032c68c7787ff188e4b6555b102a13 /capture_wpcap_packet.h
parentaec90cc406a02dc93953f39103815ed50d1febbc (diff)
don't use LPADAPTER but simply void * as we don't need to look inside the members of this struct
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14408 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture_wpcap_packet.h')
-rw-r--r--capture_wpcap_packet.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/capture_wpcap_packet.h b/capture_wpcap_packet.h
index f003d52425..090c1b2291 100644
--- a/capture_wpcap_packet.h
+++ b/capture_wpcap_packet.h
@@ -29,16 +29,16 @@
extern void wpcap_packet_load(void);
/* open the interface */
-extern LPADAPTER wpcap_packet_open(char *if_name);
+extern void * wpcap_packet_open(char *if_name);
/* close the interface */
-extern void wpcap_packet_close(LPADAPTER adapter);
+extern void wpcap_packet_close(void * adapter);
-extern int wpcap_packet_request(LPADAPTER a, ULONG Oid, int set, char *value, unsigned int *length);
+extern int wpcap_packet_request(void *a, ULONG Oid, int set, char *value, unsigned int *length);
-extern int wpcap_packet_request_uint(LPADAPTER a, ULONG Oid, UINT *value);
+extern int wpcap_packet_request_uint(void *a, ULONG Oid, UINT *value);
-extern int wpcap_packet_request_ulong(LPADAPTER a, ULONG Oid, ULONG *value);
+extern int wpcap_packet_request_ulong(void *a, ULONG Oid, ULONG *value);
#endif /* CAPTURE_WPCAP_PACKET_H */