summaryrefslogtreecommitdiff
path: root/ext/zip/lib/zip_get_name.c
diff options
context:
space:
mode:
authorGreg Beaver <cellog@php.net>2008-01-14 03:19:41 +0000
committerGreg Beaver <cellog@php.net>2008-01-14 03:19:41 +0000
commit1d3604c1b1040e115c14a66f929b703d1726a381 (patch)
tree2984afd664bc3cd5fdc2788dbe346593f68d466a /ext/zip/lib/zip_get_name.c
parent1d28516b79fd3e582a1a6e1529a83bb127a5a1ee (diff)
downloadphp-git-1d3604c1b1040e115c14a66f929b703d1726a381.tar.gz
MFH: export libzip symbols
Diffstat (limited to 'ext/zip/lib/zip_get_name.c')
-rw-r--r--ext/zip/lib/zip_get_name.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/zip/lib/zip_get_name.c b/ext/zip/lib/zip_get_name.c
index c45dd0333f..c2cae2518e 100644
--- a/ext/zip/lib/zip_get_name.c
+++ b/ext/zip/lib/zip_get_name.c
@@ -40,7 +40,7 @@
-const char *
+PHPZIPAPI const char *
zip_get_name(struct zip *za, int idx, int flags)
{
return _zip_get_name(za, idx, flags, &za->error);
@@ -48,7 +48,7 @@ zip_get_name(struct zip *za, int idx, int flags)
-const char *
+PHPZIPAPI const char *
_zip_get_name(struct zip *za, int idx, int flags, struct zip_error *error)
{
if (idx < 0 || idx >= za->nentry) {