diff options
author | Edin Kadribasic <edink@php.net> | 2004-04-19 14:13:41 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2004-04-19 14:13:41 +0000 |
commit | 9bf6b05b87200fc7f3cecd0de43996f28cf9db0b (patch) | |
tree | c1053c899db768b692f9363f635a2966bf3eab34 /ext/interbase/ibase_blobs.c | |
parent | 7537d9728093d1a57933379a43cb1d7a852ab946 (diff) | |
download | php-git-9bf6b05b87200fc7f3cecd0de43996f28cf9db0b.tar.gz |
No need to export anything. Fixes win32 build
Diffstat (limited to 'ext/interbase/ibase_blobs.c')
-rw-r--r-- | ext/interbase/ibase_blobs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/interbase/ibase_blobs.c b/ext/interbase/ibase_blobs.c index eae2f74ebb..f1f7133846 100644 --- a/ext/interbase/ibase_blobs.c +++ b/ext/interbase/ibase_blobs.c @@ -55,7 +55,7 @@ void php_ibase_blobs_minit(INIT_FUNC_ARGS) /* {{{ */ } /* }}} */ -PHPAPI int _php_ibase_string_to_quad(char const *id, ISC_QUAD *qd) /* {{{ */ +int _php_ibase_string_to_quad(char const *id, ISC_QUAD *qd) /* {{{ */ { /* shortcut for most common case */ if (sizeof(ISC_QUAD) == sizeof(ISC_UINT64)) { @@ -72,7 +72,7 @@ PHPAPI int _php_ibase_string_to_quad(char const *id, ISC_QUAD *qd) /* {{{ */ } /* }}} */ -PHPAPI char *_php_ibase_quad_to_string(ISC_QUAD const qd) /* {{{ */ +char *_php_ibase_quad_to_string(ISC_QUAD const qd) /* {{{ */ { char *result = (char *) emalloc(BLOB_ID_LEN+1); @@ -96,7 +96,7 @@ typedef struct { /* {{{ */ /* }}} */ } IBASE_BLOBINFO; -PHPAPI int _php_ibase_blob_get(zval *return_value, ibase_blob *ib_blob, unsigned long max_len TSRMLS_DC) /* {{{ */ +int _php_ibase_blob_get(zval *return_value, ibase_blob *ib_blob, unsigned long max_len TSRMLS_DC) /* {{{ */ { if (ib_blob->bl_qd.gds_quad_high || ib_blob->bl_qd.gds_quad_low) { /*not null ?*/ @@ -129,7 +129,7 @@ PHPAPI int _php_ibase_blob_get(zval *return_value, ibase_blob *ib_blob, unsigned } /* }}} */ -PHPAPI int _php_ibase_blob_add(zval **string_arg, ibase_blob *ib_blob TSRMLS_DC) /* {{{ */ +int _php_ibase_blob_add(zval **string_arg, ibase_blob *ib_blob TSRMLS_DC) /* {{{ */ { unsigned long put_cnt = 0, rem_cnt; unsigned short chunk_size; |