diff options
author | Derick Rethans <derick@php.net> | 2001-01-18 22:17:05 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2001-01-18 22:17:05 +0000 |
commit | 82d58bdc4a3cd58ee78eb017c0a3b2dc37922391 (patch) | |
tree | 62134a11ee9728701b4d6626ee54b04ee50a3625 /ext/pgsql/php_pgsql.h | |
parent | 9a3cb4559f54f11b5806eb029790b111625de986 (diff) | |
download | php-git-82d58bdc4a3cd58ee78eb017c0a3b2dc37922391.tar.gz |
- Added the pg_lolseek function, which allows for arbitrary seeking within
a large object, and the pg_lotell call, which can be used to find the
current file offset for a large object (Submitted by: Adam Haberlach
<adam@newsnipple.com>).
@- Added the pg_lolseek and pg_lotell functions (Derick)
Diffstat (limited to 'ext/pgsql/php_pgsql.h')
-rw-r--r-- | ext/pgsql/php_pgsql.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/pgsql/php_pgsql.h b/ext/pgsql/php_pgsql.h index 61796519d7..37071c8395 100644 --- a/ext/pgsql/php_pgsql.h +++ b/ext/pgsql/php_pgsql.h @@ -85,6 +85,8 @@ PHP_FUNCTION(pg_lowrite); PHP_FUNCTION(pg_loreadall); PHP_FUNCTION(pg_loimport); PHP_FUNCTION(pg_loexport); +PHP_FUNCTION(pg_lolseek); +PHP_FUNCTION(pg_lotell); PHP_FUNCTION(pg_put_line); PHP_FUNCTION(pg_end_copy); #if HAVE_PQCLIENTENCODING |