Mercurial > vim
annotate src/if_sniff.h @ 7895:bff95e0d8885 v7.4.1244
commit https://github.com/vim/vim/commit/f57969a20a4398f56e3028a6cc1102f9f9286ccf
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Feb 2 20:47:49 2016 +0100
patch 7.4.1244
Problem: The channel functions don't sort together.
Solution: Use a common "ch_" prefix.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 02 Feb 2016 21:00:07 +0100 |
parents | 1a5d34492798 |
children |
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; | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
2577
diff
changeset
|
12 extern void sniff_disconnect(int immediately); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
2577
diff
changeset
|
13 extern void ProcessSniffRequests(void); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
2577
diff
changeset
|
14 extern void ex_sniff(exarg_T *eap); |
7 | 15 |
16 #endif |