view src/if_sniff.h @ 2090:53d475dff0e3 v7.2.374

updated for version 7.2.374 Problem: Ruby eval() doesn't understand Vim types. Solution: Add the vim_to_ruby() function. (George Gensure)
author Bram Moolenaar <bram@zimbu.org>
date Wed, 24 Feb 2010 15:48:04 +0100
parents 3fc0f57ecb91
children 7c8c7c95a865
line wrap: on
line source

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

#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