/************************************************/
/*                                              */
/* File        : spy_local.h                    */
/* Description : Local spy library              */
/*                                              */
/* Author: Sfiligoi Igor                        */
/*                                              */
/* Created      : 17.09.1997                    */
/* Last modified: 17.09.1997                    */
/*                                              */
/************************************************/

#ifndef SPY_LOCAL_H
#define SPY_LOCAL_H

int spy_close_local(SPY_id sid);

int spy_get_local(SPY_id sid,    /* IN : SPY_id returned by spy_open_local */
		  char **buf,    /* OUT: pointer to the data */
                                 /* Should be disposed by the caller */
		  int *bufsize); /* OUT: buffer size */

#endif /* SPY_LOCAL_H */