view src/if_sniff.h @ 8106:58505cbea7e5 v7.4.1347

commit https://github.com/vim/vim/commit/8b778d55993d951a65f8a59843cecd177c707676 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 18 20:31:34 2016 +0100 patch 7.4.1347 Problem: When there is any error Vim will use a non-zero exit code. Solution: When using ":silent!" do not set the exit code. (Yasuhiro Matsumoto)
author Christian Brabandt <cb@256bit.org>
date Thu, 18 Feb 2016 20:45:04 +0100
parents 1a5d34492798
children
line wrap: on
line source

/*
 * if_sniff.h Interface between Vim and SNiFF+
 */

#ifndef __if_sniff_h__
#define __if_sniff_h__

extern int  want_sniff_request;
extern int  sniff_request_waiting;
extern int  sniff_connected;
extern int  fd_from_sniff;
extern void sniff_disconnect(int immediately);
extern void ProcessSniffRequests(void);
extern void ex_sniff(exarg_T *eap);

#endif