Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
software_update.h
1 /* software_update.h
2  * Wrappers and routines to check for software updates.
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef __SOFTWARE_UPDATE_H__
12 #define __SOFTWARE_UPDATE_H__
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif /* __cplusplus */
17 
22 extern void software_update_init(void);
23 
28 extern void software_update_check(void);
29 
34 extern void software_update_cleanup(void);
35 
41 extern int software_update_can_shutdown_callback(void);
42 
48 extern void software_update_shutdown_request_callback(void);
49 
50 #ifdef __cplusplus
51 }
52 #endif /* __cplusplus */
53 
54 #endif /* __SOFTWARE_UPDATE_H__ */
55 
56 /*
57  * Editor modelines
58  *
59  * Local Variables:
60  * c-basic-offset: 4
61  * tab-width: 8
62  * indent-tabs-mode: nil
63  * End:
64  *
65  * ex: set shiftwidth=4 tabstop=8 expandtab:
66  * :indentSize=4:tabSize=8:noTabs=true:
67  */