add parameter dcerpc_info to PIDL_dissect_ipv?address()
[wireshark-wip.git] / ui / gtk / airpcap_dlg.h
blobcb6497b07415669f5fa8d75b94e63f32616782db
1 /* airpcap_dlg.h
2 * Declarations of routines for the "Airpcap" dialog
4 * $Id$
6 * Giorgio Tino <giorgio.tino@cacetech.com>
7 * Copyright (c) CACE Technologies, LLC 2006
9 * Wireshark - Network traffic analyzer
10 * By Gerald Combs <gerald@wireshark.org>
11 * Copyright 1998 Gerald Combs
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 #ifndef __AIRPCAP_DLG_H__
29 #define __AIRPCAP_DLG_H__
31 #define AIRPCAP_ADVANCED_FROM_TOOLBAR 0
32 #define AIRPCAP_ADVANCED_FROM_OPTIONS 1
35 * Creates the list of available decryption modes, depending on the adapters found
37 void update_decryption_mode_list(GtkWidget *w);
40 * Selects the current decryption mode in the given combo box
42 void update_decryption_mode(GtkWidget *w);
45 * Turns the decryption on or off
47 void on_decryption_mode_cb_changed(GtkWidget *w, gpointer data _U_);
49 /** Create a "Airpcap" dialog box caused by a button click.
51 * @param widget parent widget
52 * @param construct_args_ptr parameters to construct the dialog (construct_args_t)
54 void display_airpcap_advanced_cb(GtkWidget *widget, gpointer construct_args_ptr);
56 /* Called to create the key management window */
57 void display_airpcap_key_management_cb(GtkWidget *w, gpointer data);
59 /**/
61 * Dialog box that appears whenever keys are not consistent between wieshark and airpcap
63 void airpcap_keys_check_w(GtkWidget *w, gpointer data);
65 #endif