diff options
author | Ard Biesheuvel <abies@php.net> | 2004-06-12 18:56:07 +0000 |
---|---|---|
committer | Ard Biesheuvel <abies@php.net> | 2004-06-12 18:56:07 +0000 |
commit | 6b3cda310a7deccc67cee73ec6cb84a43eb78e21 (patch) | |
tree | 399d61b1422051943faa14c5c4a4b20fa1ec0d40 /ext/pdo_firebird/php_pdo_firebird_int.h | |
parent | 8a3975191e203e1c96cbe6194275c85640f431d5 (diff) | |
download | php-git-6b3cda310a7deccc67cee73ec6cb84a43eb78e21.tar.gz |
Added client/server info attributes
Diffstat (limited to 'ext/pdo_firebird/php_pdo_firebird_int.h')
-rw-r--r-- | ext/pdo_firebird/php_pdo_firebird_int.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/pdo_firebird/php_pdo_firebird_int.h b/ext/pdo_firebird/php_pdo_firebird_int.h index b4f2260a22..8bb6a5cba2 100644 --- a/ext/pdo_firebird/php_pdo_firebird_int.h +++ b/ext/pdo_firebird/php_pdo_firebird_int.h @@ -49,6 +49,12 @@ /* Firebird API has a couple of missing const decls in its API */ #define const_cast(s) ((char*)(s)) +#ifdef PHP_WIN32 +typedef void (__stdcall *info_func_t)(char*); +#else +typedef void (*info_func_t)(char*); +#endif + typedef struct { /* the result of the last API call */ |