From 6b3cda310a7deccc67cee73ec6cb84a43eb78e21 Mon Sep 17 00:00:00 2001 From: Ard Biesheuvel Date: Sat, 12 Jun 2004 18:56:07 +0000 Subject: Added client/server info attributes --- ext/pdo_firebird/php_pdo_firebird_int.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ext/pdo_firebird/php_pdo_firebird_int.h') 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 */ -- cgit v1.2.1