Please wait until the page is fully downloaded and then press the "Expand" button or the blue line numbers.

0060001 /*
0060002 type.h
0060003 
0060004 Copyright 1995 Philip Homburg
0060005 */
0060006 
0060007 #ifndef INET_TYPE_H
0060008 #define INET_TYPE_H
0060009 
0060010 typedef struct acc *(*get_userdata_t) ARGS(( int fd, size_t offset,
0060011          size_t count, int for_ioctl ));
0060012 typedef int (*put_userdata_t) ARGS(( int fd, size_t offset,
0060013          struct acc *data, int for_ioctl ));
0060014 typedef void (*put_pkt_t) ARGS(( int fd, struct acc *data, size_t datalen ));
0060015 
ARGS is defined in inet/inet.h as:
#if _ANSI
#define ARGS(x) x
#else /* _ANSI */
#define ARGS(x) ()
#endif /* _ANSI */



0060016 #endif /* INET_TYPE_H */
0060017 
0060018 /*
0060019  * $PchId: type.h,v 1.5 1995/11/21 06:51:58 philip Exp $
0060020  */