annotate src/if_sniff.h @ 2074:1bb06e6512a2
v7.2.358
updated for version 7.2.358
Problem: Compiler warnings on VMS. (Zoltan Arpadffy)
Solution: Pass array itself instead its address. Return a value.
author |
Bram Moolenaar <bram@zimbu.org> |
date |
Thu, 11 Feb 2010 18:19:38 +0100 |
parents |
3fc0f57ecb91 |
children |
7c8c7c95a865 |
rev |
line source |
7
|
1 /*
|
|
2 * if_sniff.h Interface between Vim and SNiFF+
|
|
3 *
|
|
4 * $Id$
|
|
5 */
|
|
6
|
|
7 #ifndef __if_sniff_h__
|
|
8 #define __if_sniff_h__
|
|
9
|
|
10 extern int want_sniff_request;
|
|
11 extern int sniff_request_waiting;
|
|
12 extern int sniff_connected;
|
|
13 extern int fd_from_sniff;
|
|
14 extern void sniff_disconnect __ARGS((int immediately));
|
|
15 extern void ProcessSniffRequests __ARGS((void));
|
|
16 extern void ex_sniff __ARGS((exarg_T *eap));
|
|
17
|
|
18 #endif
|