blob: fe32a074d452e771e7943bc8d90b8f63681adcbc (
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
29
30
31
32
33
34
35
36
37
38
|
#ifndef _H_RPMLEAD
#define _H_RPMLEAD
/** \ingroup lead
* \file lib/rpmlead.h
* Routines to read and write an rpm lead structure for a a package.
*/
#include <rpmlib.h>
#ifdef __cplusplus
extern "C" {
#endif
/** \ingroup lead
* Write lead to file handle.
* @param fd file handle
* @param lead data address
* @return 0 on success, 1 on error
*/
int writeLead(FD_t fd, const struct rpmlead *lead)
/*@globals fileSystem@*/
/*@modifies fd, fileSystem @*/;
/** \ingroup lead
* Read lead from file handle.
* @param fd file handle
* @retval lead data address
* @return 0 on success, 1 on error
*/
int readLead(FD_t fd, /*@out@*/ struct rpmlead *lead)
/*@modifies fd, *lead, fileSystem @*/;
#ifdef __cplusplus
}
#endif
#endif /* _H_RPMLEAD */
|