mirror of
https://github.com/danog/ext-pq.git
synced 2024-11-30 04:19:49 +01:00
fix master compatibility
This commit is contained in:
parent
c7085becd3
commit
8897b5a581
@ -130,7 +130,7 @@ static PHP_METHOD(pqcancel, cancel) {
|
||||
}
|
||||
|
||||
static zend_function_entry php_pqcancel_methods[] = {
|
||||
PHP_ME(pqcancel, __construct, ai_pqcancel_construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
|
||||
PHP_ME(pqcancel, __construct, ai_pqcancel_construct, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqcancel, cancel, ai_pqcancel_cancel, ZEND_ACC_PUBLIC)
|
||||
{0}
|
||||
};
|
||||
|
@ -1947,7 +1947,7 @@ static PHP_METHOD(pqconn, unsetConverter) {
|
||||
}
|
||||
|
||||
static zend_function_entry php_pqconn_methods[] = {
|
||||
PHP_ME(pqconn, __construct, ai_pqconn_construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
|
||||
PHP_ME(pqconn, __construct, ai_pqconn_construct, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqconn, reset, ai_pqconn_reset, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqconn, resetAsync, ai_pqconn_reset_async, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqconn, poll, ai_pqconn_poll, ZEND_ACC_PUBLIC)
|
||||
|
@ -293,7 +293,7 @@ static PHP_METHOD(pqcopy, get) {
|
||||
}
|
||||
|
||||
static zend_function_entry php_pqcopy_methods[] = {
|
||||
PHP_ME(pqcopy, __construct, ai_pqcopy_construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
|
||||
PHP_ME(pqcopy, __construct, ai_pqcopy_construct, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqcopy, put, ai_pqcopy_put, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqcopy, end, ai_pqcopy_end, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqcopy, get, ai_pqcopy_get, ZEND_ACC_PUBLIC)
|
||||
|
@ -400,7 +400,7 @@ static PHP_METHOD(pqcur, moveAsync)
|
||||
}
|
||||
|
||||
static zend_function_entry php_pqcur_methods[] = {
|
||||
PHP_ME(pqcur, __construct, ai_pqcur___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
|
||||
PHP_ME(pqcur, __construct, ai_pqcur___construct, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqcur, open, ai_pqcur_open, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqcur, openAsync, ai_pqcur_openAsync, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqcur, close, ai_pqcur_close, ZEND_ACC_PUBLIC)
|
||||
|
@ -423,7 +423,7 @@ static PHP_METHOD(pqlob, truncate) {
|
||||
}
|
||||
|
||||
static zend_function_entry php_pqlob_methods[] = {
|
||||
PHP_ME(pqlob, __construct, ai_pqlob_construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
|
||||
PHP_ME(pqlob, __construct, ai_pqlob_construct, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqlob, write, ai_pqlob_write, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqlob, read, ai_pqlob_read, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqlob, seek, ai_pqlob_seek, ZEND_ACC_PUBLIC)
|
||||
|
@ -459,7 +459,7 @@ static PHP_METHOD(pqstm, prepareAsync)
|
||||
}
|
||||
|
||||
static zend_function_entry php_pqstm_methods[] = {
|
||||
PHP_ME(pqstm, __construct, ai_pqstm_construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
|
||||
PHP_ME(pqstm, __construct, ai_pqstm_construct, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqstm, bind, ai_pqstm_bind, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqstm, deallocate, ai_pqstm_deallocate, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqstm, deallocateAsync, ai_pqstm_deallocate_async, ZEND_ACC_PUBLIC)
|
||||
|
@ -843,7 +843,7 @@ static PHP_METHOD(pqtxn, exportLOB) {
|
||||
}
|
||||
|
||||
static zend_function_entry php_pqtxn_methods[] = {
|
||||
PHP_ME(pqtxn, __construct, ai_pqtxn_construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
|
||||
PHP_ME(pqtxn, __construct, ai_pqtxn_construct, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqtxn, commit, ai_pqtxn_commit, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqtxn, rollback, ai_pqtxn_rollback, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqtxn, commitAsync, ai_pqtxn_commit_async, ZEND_ACC_PUBLIC)
|
||||
|
@ -271,7 +271,7 @@ static PHP_METHOD(pqtypes, refresh) {
|
||||
}
|
||||
|
||||
static zend_function_entry php_pqtypes_methods[] = {
|
||||
PHP_ME(pqtypes, __construct, ai_pqtypes_construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
|
||||
PHP_ME(pqtypes, __construct, ai_pqtypes_construct, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(pqtypes, refresh, ai_pqtypes_refresh, ZEND_ACC_PUBLIC)
|
||||
{0}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user