typedef void (*pakfire_log_function_t)(void* data, int priority, const char* file,
int line, const char* fn, const char* format, va_list args);
-enum _pakfire_comparison_types {
- PAKFIRE_ICASE = 1 << 0,
- PAKFIRE_NOT = 1 << 1,
- PAKFIRE_NAME_ONLY = 1 << 2,
- PAKFIRE_SUBSTRING = 1 << 3,
-
- PAKFIRE_EQ = 1 << 8,
- PAKFIRE_LT = 1 << 9,
- PAKFIRE_LE = PAKFIRE_EQ|PAKFIRE_LT,
- PAKFIRE_GT = 1 << 10,
- PAKFIRE_GE = PAKFIRE_EQ|PAKFIRE_GT,
- PAKFIRE_NEQ = PAKFIRE_EQ|PAKFIRE_NOT,
-
- PAKFIRE_SUBSTR = 1 << 11,
- PAKFIRE_GLOB = 1 << 12,
-};
-
typedef enum _pakfire_action_types {
PAKFIRE_ACTION_NOOP = 0,
PAKFIRE_ACTION_VERIFY = 1 << 0,