diff options
| author | Wez Furlong <wez@php.net> | 2005-07-08 19:28:52 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2005-07-08 19:28:52 +0000 |
| commit | 7976182b9484c0a51934fc6d76cce6cb1081c5a2 (patch) | |
| tree | 810a11ffbf55b53e1a103b1f6f314ac37fccdbac /ext/pdo/php_pdo_driver.h | |
| parent | 168b6500fd8b8d17f17e99659997620631096696 (diff) | |
| download | php-git-7976182b9484c0a51934fc6d76cce6cb1081c5a2.tar.gz | |
Fix Bug #33111
Diffstat (limited to 'ext/pdo/php_pdo_driver.h')
| -rwxr-xr-x | ext/pdo/php_pdo_driver.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/pdo/php_pdo_driver.h b/ext/pdo/php_pdo_driver.h index 86bd35f66d..d0259e5b30 100755 --- a/ext/pdo/php_pdo_driver.h +++ b/ext/pdo/php_pdo_driver.h @@ -68,11 +68,11 @@ enum pdo_param_type { /* get_col ptr should point to a zend_bool */ PDO_PARAM_BOOL, - - /* magic flag to denote a parameter as being input/output */ - PDO_PARAM_INPUT_OUTPUT = 0x80000000 }; +/* magic flag to denote a parameter as being input/output */ +#define PDO_PARAM_INPUT_OUTPUT 0x80000000 + #define PDO_PARAM_FLAGS 0xFFFF0000 #define PDO_PARAM_TYPE(x) ((x) & ~PDO_PARAM_FLAGS) |
