-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibpkgconf.pxd
More file actions
24 lines (21 loc) · 830 Bytes
/
libpkgconf.pxd
File metadata and controls
24 lines (21 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from libc.stdio cimport FILE
from libcpp cimport bool
from libpkgconf_iter cimport *
cdef enum pkgconf_client_traits_t:
NoFlags = 0x000
SearchPrivate = 0x001
EnvOnly = 0x002
NoUninstalled = 0x004
SkipRootVirtual = 0x008
MergePrivateFragments = 0x010
SkipConflicts = 0x020
NoCache = 0x040
SkipErrors = 0x080
SkipProvides = 0x200
from libpkgconf_client cimport *
from libpkgconf_tuple cimport *
from libpkgconf_path cimport *
from libpkgconf_pkg cimport *
from libpkgconf_fragment cimport *
cdef extern from "libpkgconf/libpkgconf.h":
int pkgconf_compare_version(const char *a, const char *b)