annotate src/if_sniff.h @ 7506:cfc0d60f6233
v7.4.1055
commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jan 6 21:23:56 2016 +0100
patch 7.4.1055
Problem: Running "make newtests" in src/testdir has no output.
Solution: List the messages file when a test fails. (Christian Brabandt)
Update the list of tests.
author |
Christian Brabandt <cb@256bit.org> |
date |
Wed, 06 Jan 2016 21:30:05 +0100 |
parents |
073ff46fe397 |
children |
1a5d34492798 |
rev |
line source |
7
|
1 /*
|
|
2 * if_sniff.h Interface between Vim and SNiFF+
|
|
3 */
|
|
4
|
|
5 #ifndef __if_sniff_h__
|
|
6 #define __if_sniff_h__
|
|
7
|
|
8 extern int want_sniff_request;
|
|
9 extern int sniff_request_waiting;
|
|
10 extern int sniff_connected;
|
|
11 extern int fd_from_sniff;
|
|
12 extern void sniff_disconnect __ARGS((int immediately));
|
|
13 extern void ProcessSniffRequests __ARGS((void));
|
|
14 extern void ex_sniff __ARGS((exarg_T *eap));
|
|
15
|
|
16 #endif
|