aboutsummaryrefslogtreecommitdiffstats
path: root/capture_wpcap_packet.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-05-21 00:10:17 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-05-21 00:10:17 +0000
commit131f417a8f5115bb84674be5296ef0244d64e2c5 (patch)
tree634be5a771032c68c7787ff188e4b6555b102a13 /capture_wpcap_packet.h
parentbfbb46de4336e0eeca804c83ff6917e684195183 (diff)
don't use LPADAPTER but simply void * as we don't need to look inside the members of this struct
svn path=/trunk/; revision=14408
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 */