]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/import/import-raw.h
pkgconfig: define variables relative to ${prefix}/${rootprefix}/${sysconfdir}
[thirdparty/systemd.git] / src / import / import-raw.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
b6e676ce
LP
2#pragma once
3
b6e676ce 4#include "sd-event.h"
71d35b6b 5
b6e676ce 6#include "import-util.h"
71d35b6b 7#include "macro.h"
b6e676ce
LP
8
9typedef struct RawImport RawImport;
10
11typedef void (*RawImportFinished)(RawImport *import, int error, void *userdata);
12
13int raw_import_new(RawImport **import, sd_event *event, const char *image_root, RawImportFinished on_finished, void *userdata);
14RawImport* raw_import_unref(RawImport *import);
15
16DEFINE_TRIVIAL_CLEANUP_FUNC(RawImport*, raw_import_unref);
17
18int raw_import_start(RawImport *i, int fd, const char *local, bool force_local, bool read_only);