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