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