summaryrefslogtreecommitdiff
path: root/ext/dba/libcdb/cdb_make.h
diff options
context:
space:
mode:
authorEdin Kadribasic <edink@php.net>2002-11-19 01:06:42 +0000
committerEdin Kadribasic <edink@php.net>2002-11-19 01:06:42 +0000
commitff55850562f70b609901864e79856151ff35d57c (patch)
treee175a954e57873e4ad0081e3fff31fcb0a088e28 /ext/dba/libcdb/cdb_make.h
parentb75f2df3d433d9d4fb795a1ce131d54aebeef3f6 (diff)
downloadphp-git-ff55850562f70b609901864e79856151ff35d57c.tar.gz
No need to declare functions used internally by DBA as PHPAPI. This
fixes windows build.
Diffstat (limited to 'ext/dba/libcdb/cdb_make.h')
-rw-r--r--ext/dba/libcdb/cdb_make.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/dba/libcdb/cdb_make.h b/ext/dba/libcdb/cdb_make.h
index 33e1ac6539..e5fb65fe49 100644
--- a/ext/dba/libcdb/cdb_make.h
+++ b/ext/dba/libcdb/cdb_make.h
@@ -54,10 +54,10 @@ struct cdb_make {
php_stream * fp;
};
-PHPAPI int cdb_make_start(struct cdb_make *, php_stream * TSRMLS_DC);
-PHPAPI int cdb_make_addbegin(struct cdb_make *, unsigned int, unsigned int TSRMLS_DC);
-PHPAPI int cdb_make_addend(struct cdb_make *, unsigned int, unsigned int, uint32 TSRMLS_DC);
-PHPAPI int cdb_make_add(struct cdb_make *, char *, unsigned int, char *, unsigned int TSRMLS_DC);
-PHPAPI int cdb_make_finish(struct cdb_make * TSRMLS_DC);
+int cdb_make_start(struct cdb_make *, php_stream * TSRMLS_DC);
+int cdb_make_addbegin(struct cdb_make *, unsigned int, unsigned int TSRMLS_DC);
+int cdb_make_addend(struct cdb_make *, unsigned int, unsigned int, uint32 TSRMLS_DC);
+int cdb_make_add(struct cdb_make *, char *, unsigned int, char *, unsigned int TSRMLS_DC);
+int cdb_make_finish(struct cdb_make * TSRMLS_DC);
#endif