summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/handle.h
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2006-10-21 03:27:35 +0200
committerAaron Griffin <aaron@archlinux.org>2006-10-21 03:27:35 +0200
commit1568fd98d882add6c91255b331592691f399bd3f (patch)
tree0af5de033e21567b68e2935ae58108cb096086e0 /lib/libalpm/handle.h
parentca2544dbc2a88501a5f1a4d94c81e5fc1da716d1 (diff)
downloadpacman-1568fd98d882add6c91255b331592691f399bd3f.tar.gz
pacman-1568fd98d882add6c91255b331592691f399bd3f.tar.xz
Minor changes:
* Moved the pmhandle_t extern decl around * Fixed a doxygen complaint
Diffstat (limited to 'lib/libalpm/handle.h')
-rw-r--r--lib/libalpm/handle.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libalpm/handle.h b/lib/libalpm/handle.h
index 0bd37afd..9311f724 100644
--- a/lib/libalpm/handle.h
+++ b/lib/libalpm/handle.h
@@ -59,6 +59,8 @@ typedef struct __pmhandle_t {
pmlist_t *needles; /* for searching */
} pmhandle_t;
+extern pmhandle_t *handle;
+
#define FREEHANDLE(p) do { if (p) { _alpm_handle_free(p); p = NULL; } } while (0)
pmhandle_t *_alpm_handle_new(void);