view src/if_sniff.h @ 6733:5f6077b10738 v7.4.690

patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing redraw when using CTRL-U. (Knil Ino) Solution: Update pointers after calling ga_grow().
author Bram Moolenaar <bram@vim.org>
date Fri, 03 Apr 2015 17:11:45 +0200
parents 073ff46fe397
children 1a5d34492798
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 __ARGS((int immediately));
extern void ProcessSniffRequests __ARGS((void));
extern void ex_sniff __ARGS((exarg_T *eap));

#endif