Fix compiler warning
[metze/wireshark/wip.git] / capture_win_ifnames.h
1 /* capture_win_ifnames.h
2  * Routines supporting the use of Windows friendly interface names within Wireshark
3  * Copyright 2011-2012, Mike Garratt <wireshark@evn.co.nz>
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24  */
25
26 #ifndef CAPTURE_WIN_IFNAMES_H
27 #define CAPTURE_WIN_IFNAMES_H
28
29 /*
30  * If a string is a GUID in {}, fill in a GUID structure with the GUID
31  * value and return TRUE; otherwise, if the string is not a valid GUID
32  * in {}, return FALSE.
33  */
34 extern gboolean parse_as_guid(const char *guid_text, GUID *guid);
35
36 /* Get the friendly name for the given GUID */
37 extern char *get_interface_friendly_name_from_device_guid(GUID *guid);
38
39 /*
40  * Given an interface name, try to extract the GUID from it and parse it.
41  * If that fails, return NULL; if that succeeds, attempt to get the
42  * friendly name for the interface in question.  If that fails, return
43  * NULL, otherwise return the friendly name, allocated with g_malloc()
44  * (so that it must be freed with g_free()).
45  */
46 extern char *get_windows_interface_friendly_name(const char *interface_devicename);
47
48 #endif