Imported Upstream version 0.7.27
[platform/upstream/libsolv.git] / ext / repo_conda.h
1 /*
2  * Copyright (c) 2019, SUSE LLC
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 #ifndef LIBSOLV_REPO_CONDA_H
9 #define LIBSOLV_REPO_CONDA_H
10
11 #include <stdio.h>
12
13 #include "repo.h"
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 #define CONDA_ADD_USE_ONLY_TAR_BZ2      (1 << 8)
20 #define CONDA_ADD_WITH_SIGNATUREDATA    (1 << 9)
21
22 extern int repo_add_conda(Repo *repo, FILE *fp, int flags);
23
24 #ifdef __cplusplus
25 }
26 #endif
27
28 #endif /* LIBSOLV_REPO_CONDA_H */