]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/import/export-tar.h
tree-wide: remove Lennart's copyright lines
[thirdparty/systemd.git] / src / import / export-tar.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
587fec42
LP
2#pragma once
3
587fec42 4#include "sd-event.h"
71d35b6b 5
587fec42 6#include "import-compress.h"
71d35b6b 7#include "macro.h"
587fec42
LP
8
9typedef struct TarExport TarExport;
10
11typedef void (*TarExportFinished)(TarExport *export, int error, void *userdata);
12
13int tar_export_new(TarExport **export, sd_event *event, TarExportFinished on_finished, void *userdata);
14TarExport* tar_export_unref(TarExport *export);
15
16DEFINE_TRIVIAL_CLEANUP_FUNC(TarExport*, tar_export_unref);
17
18int tar_export_start(TarExport *export, const char *path, int fd, ImportCompressType compress);