/************************************************/ /* */ /* File : spy_CB.h */ /* Description : Circular buffer spy library */ /* */ /* Author: Sfiligoi Igor */ /* */ /* Created : 17.09.1997 (as spy_local) */ /* Recreated : 09.12.1998 */ /* Last modified: 16.12.1998 */ /* */ /************************************************/ #ifndef SPY_CB_H #define SPY_CB_H #include "spy_extended.h" int spy_close_CB(SPY_ext_id sid); int spy_get_CB(SPY_ext_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_CB_H */