rpm 6.1.90
The RPM Package Manager
Loading...
Searching...
No Matches
rpmfc.h
Go to the documentation of this file.
1#ifndef _H_RPMFC_
2#define _H_RPMFC_
3
8
9#include <rpm/rpmtypes.h>
10#include <rpm/argv.h> /* for ARGV_t */
11#include <rpm/rpmspec.h> /* for Package */
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
20extern int _rpmfc_debug;
21
25typedef struct rpmfc_s * rpmfc;
26
31 RPMFC_BLACK = 0,
32 RPMFC_ELF32 = (1 << 0),
33 RPMFC_ELF64 = (1 << 1),
34 RPMFC_ELFMIPSN32 = (1 << 2),
35#define RPMFC_ELF (RPMFC_ELF32|RPMFC_ELF64|RPMFC_ELFMIPSN32)
37
38 RPMFC_WHITE = (1 << 29),
39 RPMFC_INCLUDE = (1 << 30),
40 RPMFC_ERROR = (1U << 31)
41};
42
49RPM_PUBLIC_API
50void rpmfcPrint(const char * msg, rpmfc fc, FILE * fp);
51
57RPM_PUBLIC_API
59
66RPM_PUBLIC_API
67rpmfc rpmfcCreate(const char *rootDir, rpmFlags flags);
68
76RPM_PUBLIC_API
77rpmRC rpmfcClassify(rpmfc fc, ARGV_t argv, rpm_mode_t * fmode);
78
84RPM_PUBLIC_API
86
92RPM_PUBLIC_API
94
100RPM_PUBLIC_API
102
108RPM_PUBLIC_API
110
116RPM_PUBLIC_API
118
124RPM_PUBLIC_API
126
132RPM_PUBLIC_API
134
140RPM_PUBLIC_API
142
148RPM_PUBLIC_API
150
156RPM_PUBLIC_API
158
165RPM_PUBLIC_API
166rpmds rpmfcDependencies(rpmfc fc, rpmTagVal tagN);
167
168#ifdef __cplusplus
169}
170#endif
171
172#endif /* _H_RPMFC_ */
RPM_PUBLIC_API rpmds rpmfcSuggests(rpmfc fc)
RPM_PUBLIC_API void rpmfcPrint(const char *msg, rpmfc fc, FILE *fp)
RPM_PUBLIC_API rpmds rpmfcEnhances(rpmfc fc)
RPM_PUBLIC_API rpmds rpmfcConflicts(rpmfc fc)
RPM_PUBLIC_API rpmds rpmfcOrderWithRequires(rpmfc fc)
RPM_PUBLIC_API rpmds rpmfcProvides(rpmfc fc)
RPM_PUBLIC_API rpmRC rpmfcClassify(rpmfc fc, ARGV_t argv, rpm_mode_t *fmode)
RPM_PUBLIC_API rpmds rpmfcRequires(rpmfc fc)
RPM_PUBLIC_API rpmds rpmfcObsoletes(rpmfc fc)
RPM_PUBLIC_API rpmds rpmfcSupplements(rpmfc fc)
RPM_PUBLIC_API rpmds rpmfcDependencies(rpmfc fc, rpmTagVal tagN)
RPM_PUBLIC_API rpmfc rpmfcCreate(const char *rootDir, rpmFlags flags)
FCOLOR_e
Definition rpmfc.h:30
RPM_PUBLIC_API rpmfc rpmfcFree(rpmfc fc)
RPM_PUBLIC_API rpmds rpmfcRecommends(rpmfc fc)
RPM_PUBLIC_API rpmRC rpmfcApply(rpmfc fc)
struct rpmfc_s * rpmfc
Definition rpmfc.h:25
enum rpmRC_e rpmRC
#define RPMFC_ELF
Definition rpmfc.h:35
int _rpmfc_debug