blob: f5aef28ad621a3659592f72ccc8e34da89ef3646 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef H_RPMPOL
#define H_RPMPOL
/** \ingroup rpmpol
* \file lib/rpmpol.h
* Structure(s) used for policy sets.
*/
#include <rpm/rpmtypes.h>
#ifdef __cplusplus
extern "C" {
#endif
enum rpmpolFlags_e {
RPMPOL_FLAG_NONE = 0,
RPMPOL_FLAG_BASE = (1 << 0)
};
typedef rpmFlags rpmpolFlags;
#define RPMPOL_TYPE_DEFAULT "default"
#ifdef __cplusplus
}
#endif
#endif /* H_rpmpol */
|