remove the Makefile.nmake target to avoid errors in dist...
[metze/wireshark/wip.git] / echld / echld-util.h
1 /* echld-util.h
2  *  utility for echld
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * Copyright (c) 2013 by Luis Ontanon <luis@ontanon.org>
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25  */
26 #ifndef __ECHLD_UTIL
27 #define __ECHLD_UTIL
28
29
30 typedef void (*echld_ping_cb_t)(long usec, void* data);
31 WS_DLL_PUBLIC echld_state_t echld_ping(int child_id, echld_ping_cb_t pcb, void* cb_data);
32
33 typedef void (*echld_list_interface_cb_t)(char* intf_name, char* params, void* cb_data);
34 WS_DLL_PUBLIC echld_state_t echld_list_interfaces(int child_id, echld_list_interface_cb_t, void* cb_data);
35
36 typedef void (*echild_get_packet_summary_cb_t)(char* summary, void* data);
37 WS_DLL_PUBLIC echld_state_t echld_open_file(int child_id, const char* filename,echild_get_packet_summary_cb_t,void*);
38
39
40 WS_DLL_PUBLIC echld_state_t echld_open_interface(int child_id, const char* intf_name, const char* params);
41 WS_DLL_PUBLIC echld_state_t echld_start_capture(int child_id, echild_get_packet_summary_cb_t);
42 WS_DLL_PUBLIC echld_state_t echld_stop_capture(int child_id);
43
44 typedef void (*echild_get_packets_cb)(char* tree_text,void* data);
45 typedef void (*echild_get_buffer_cb)(char* buffer_text, void* data);
46 WS_DLL_PUBLIC echld_state_t echld_get_packets_range(int child_id, const char* range, echild_get_packets_cb, echild_get_buffer_cb, void* data);
47
48 #endif