Mercurial > vim
annotate src/if_sniff.h @ 7955:a4de8e834b8f v7.4.1273
commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 7 00:00:35 2016 +0100
patch 7.4.1273
Problem: assert_false(v:false) still fails.
Solution: Fix the typo.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 07 Feb 2016 00:15:04 +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 |