nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 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 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22  
23 #ifndef __SOFTWARE_UPDATE_H__
24 #define __SOFTWARE_UPDATE_H__
25  
26 #ifdef __cplusplus
27 extern "C" {
28 #endif /* __cplusplus */
29  
30 /** Initialize software updates.
31 *
32 * Does nothing on platforms that don't support software updates.
33 */
34 extern void software_update_init(void);
35  
36 /** Force a software update check.
37 *
38 * Does nothing on platforms that don't support software updates.
39 */
40 extern void software_update_check(void);
41  
42 /** Clean up software update checking.
43 *
44 * Does nothing on platforms that don't support software updates.
45 */
46 extern void software_update_cleanup(void);
47  
48  
49 #ifdef __cplusplus
50 }
51 #endif /* __cplusplus */
52  
53 #endif /* __SOFTWARE_UPDATE_H__ */
54  
55 /*
56 * Editor modelines
57 *
58 * Local Variables:
59 * c-basic-offset: 4
60 * tab-width: 8
61 * indent-tabs-mode: nil
62 * End:
63 *
64 * ex: set shiftwidth=4 tabstop=8 expandtab:
65 * :indentSize=4:tabSize=8:noTabs=true:
66 */