blob: 7ba2a160d62282445080268001b582181671ccec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef H_LOOKUP
#define H_LOOKUP
#include <rpmlib.h>
#ifdef __cplusplus
extern "C" {
#endif
int findMatches(rpmdb db, const char * name, const char * version,
const char * release, /*@out@*/dbiIndexSet * matches);
#ifdef __cplusplus
}
#endif
#endif
|