2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2015-2022 Mnemosyne LLC.
|
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
|
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2015-04-04 17:43:56 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2015-04-04 17:43:56 +00:00
|
|
|
|
|
|
|
struct tr_error;
|
|
|
|
|
|
|
|
typedef struct dtr_callbacks
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
int (*on_start)(void* arg, bool foreground);
|
|
|
|
void (*on_stop)(void* arg);
|
|
|
|
void (*on_reconfigure)(void* arg);
|
|
|
|
} dtr_callbacks;
|
2015-04-04 17:43:56 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool dtr_daemon(dtr_callbacks const* cb, void* cb_arg, bool foreground, int* exit_code, struct tr_error** error);
|