blob: be8e1a67c6b30895c78c0b9db3e62a60b689b099 (
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
|
#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.
*/
#ifdef __cplusplus
extern "C" {
#endif
/** \ingroup lead
* Write lead to file handle.
* @param fd file handle
* @param lead package lead
* @return RPMRC_OK on success, RPMRC_FAIL on error
*/
rpmRC 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 package lead
* @return RPMRC_OK on success, RPMRC_FAIL/RPMRC_NOTFOUND on error
*/
rpmRC readLead(FD_t fd, /*@out@*/ struct rpmlead *lead)
/*@modifies fd, *lead @*/;
#ifdef __cplusplus
}
#endif
#endif /* _H_RPMLEAD */
|