]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/import/import-raw.h
tree-wide: drop license boilerplate
[thirdparty/systemd.git] / src / import / import-raw.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
b6e676ce
LP
2#pragma once
3
4/***
5 This file is part of systemd.
6
7 Copyright 2015 Lennart Poettering
b6e676ce
LP
8***/
9
10#include "sd-event.h"
71d35b6b 11
b6e676ce 12#include "import-util.h"
71d35b6b 13#include "macro.h"
b6e676ce
LP
14
15typedef struct RawImport RawImport;
16
17typedef void (*RawImportFinished)(RawImport *import, int error, void *userdata);
18
19int raw_import_new(RawImport **import, sd_event *event, const char *image_root, RawImportFinished on_finished, void *userdata);
20RawImport* raw_import_unref(RawImport *import);
21
22DEFINE_TRIVIAL_CLEANUP_FUNC(RawImport*, raw_import_unref);
23
24int raw_import_start(RawImport *i, int fd, const char *local, bool force_local, bool read_only);