blob: aa85451d6e9bb20dd98f46800f9c8f89223f222c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef RPMLOCK_H
#define RPMLOCK_H
#include <rpm/rpmutil.h>
typedef struct rpmlock_s * rpmlock;
#ifdef __cplusplus
extern "C" {
#endif
RPM_GNUC_INTERNAL
rpmlock rpmlockAcquire(const char *lock_path, const char *descr);
RPM_GNUC_INTERNAL
rpmlock rpmlockFree(rpmlock lock);
#ifdef __cplusplus
}
#endif
#endif
|