Mercurial > vim
annotate src/if_sniff.h @ 8037:9dea1571b352 v7.4.1313
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 13 18:40:30 2016 +0100
patch 7.4.1313
Problem: MS-Windows: Using socket after it was closed causes an exception.
Solution: Don't give an error when handling WM_NETBEANS. Re-enable tests
for MS-Windows.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 13 Feb 2016 18:45: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 |