Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / ui / macosx / sparkle_bridge.h
blob8ba7e4a8af16e636d7c7100ae5fe0acf7c68fe4e
1 /** @file
3 * C wrapper for the Sparkle API
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <gerald@wireshark.org>
7 * Copyright 1998 Gerald Combs
9 * SPDX-License-Identifier: GPL-2.0-or-later
12 // XXX We could alternatively do this via C++:
13 // https://github.com/sparkle-project/Sparkle/issues/1137
16 #ifndef SPARKLE_BRIDGE_H
17 #define SPARKLE_BRIDGE_H
19 #include <stdbool.h>
21 void sparkle_software_update_init(const char *url, bool enabled, int interval);
23 void sparkle_software_update_check(void);
25 #endif // SPARKLE_BRIDGE_H