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