/
niceSOFT
/
systemd
Обзор
Документация
Войти
/
niceSOFT
/
systemd
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/import/pull-forward.h
22 строки
757 B
Yu Watanabe
Rename basic-forward.h, sd-forward.h, and shared-forward.h to forward.h
14 июл 2026, 20:18
14 июл 2026, 20:18
01e1303
Код
Авторство
О чём код?
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once #include "forward.h" typedef enum PullJobState PullJobState; typedef struct PullJob PullJob; typedef struct OciPull OciPull; typedef struct RawPull RawPull; typedef struct TarPull TarPull; typedef void (*PullJobFinished)(PullJob *job); typedef int (*PullJobOpenDisk)(PullJob *job); typedef int (*PullJobHeader)(PullJob *job, const char *header, size_t sz); typedef void (*PullJobProgress)(PullJob *job); typedef int (*PullJobNotFound)(PullJob *job, char **ret_new_url); typedef void (*OciPullFinished)(OciPull *pull, int error, void *userdata); typedef void (*RawPullFinished)(RawPull *p, int error, void *userdata); typedef void (*TarPullFinished)(TarPull *p, int error, void *userdata);