Mercurial > vim
annotate src/if_sniff.h @ 7949:3f7382858d4d v7.4.1270
commit https://github.com/vim/vim/commit/81e7a9c3fb37cad46c8f04a5ce871fb06819a371
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 6 19:57:20 2016 +0100
patch 7.4.1270
Problem: Warnings for missing values in switch.
Solution: Change switch to if-else or add values.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 06 Feb 2016 20:00: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 |