mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 06:27:08 +00:00
Protect from multiple decl's
This commit is contained in:
parent
48472e9516
commit
c2f35bc69a
2 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ typedef struct gnupg_object{
|
|||
HashTable *decryptkeys;
|
||||
} gnupg_object;
|
||||
|
||||
zend_class_entry *gnupg_class_entry;
|
||||
static zend_class_entry *gnupg_class_entry;
|
||||
|
||||
PHP_MINIT_FUNCTION(gnupg);
|
||||
PHP_MSHUTDOWN_FUNCTION(gnupg);
|
||||
|
|
|
@ -41,7 +41,7 @@ typedef struct _gnupg_keylistiterator_object{
|
|||
zval pattern;
|
||||
} gnupg_keylistiterator_object;
|
||||
|
||||
zend_class_entry *gnupg_keylistiterator_class_entry;
|
||||
static zend_class_entry *gnupg_keylistiterator_class_entry;
|
||||
|
||||
PHP_METHOD(gnupg_keylistiterator, __construct);
|
||||
PHP_METHOD(gnupg_keylistiterator, current);
|
||||
|
|
Loading…
Reference in a new issue