Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
language.h
1 /* language.h
2  *
3  * Copyright 2014, Michal Labedzki for Tieto Corporation
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #ifndef __LANGUAGE_H__
13 #define __LANGUAGE_H__
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif /* __cplusplus */
18 
19 #define USE_SYSTEM_LANGUAGE "system"
20 
21 extern char *language;
22 
23 extern void read_language_prefs(void);
24 extern int write_language_prefs(void);
25 
26 #ifdef __cplusplus
27 }
28 #endif /* __cplusplus */
29 
30 #endif /* language.h */
31 
32 /*
33  * Editor modelines - http://www.wireshark.org/tools/modelines.html
34  *
35  * Local variables:
36  * c-basic-offset: 4
37  * tab-width: 8
38  * indent-tabs-mode: nil
39  * End:
40  *
41  * vi: set shiftwidth=4 tabstop=8 expandtab:
42  * :indentSize=4:tabSize=8:noTabs=true:
43  */