blob: d8edf00fbe192afc8b1e20aaddae4b7041ad2aa8 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#ifndef _ALPM_HANDLE_H
#define _ALPM_HANDLE_H
#include <stdio.h>
#include <sys/types.h>
#include "alpm_list.h"
#include "db.h"
#include "log.h"
#include "alpm.h"
#include "trans.h"
typedef struct _pmhandle_t {
uid_t uid; TODO
pmdb_t *db_local;
alpm_list_t *dbs_sync;
FILE *logstream;
int lckfd;
pmtrans_t *trans;
alpm_cb_log logcb;
alpm_cb_download dlcb;
char *root;
char *dbpath;
char *logfile;
char *lockfile;
alpm_list_t *cachedirs;
alpm_list_t *noupgrade;
alpm_list_t *noextract; TODO
alpm_list_t *ignorepkg;
alpm_list_t *holdpkg;
unsigned short usesyslog; TODO
unsigned short nopassiveftp;
time_t upgradedelay;
char *xfercommand;
unsigned short usedelta;
} pmhandle_t;
extern pmhandle_t *handle;
pmhandle_t *_alpm_handle_new();
void _alpm_handle_free(pmhandle_t *handle);
#endif
|