mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 14:27:09 +00:00
Add GNUPG_GPGME_VERSION constant
This commit is contained in:
parent
1779a02f74
commit
15b69c66ea
1 changed files with 10 additions and 2 deletions
12
gnupg.c
12
gnupg.c
|
@ -471,11 +471,17 @@ ZEND_GET_MODULE(gnupg)
|
||||||
#define PHP_GNUPG_REG_CONST(_name, _value) \
|
#define PHP_GNUPG_REG_CONST(_name, _value) \
|
||||||
REGISTER_LONG_CONSTANT(_name, _value, CONST_CS | CONST_PERSISTENT);
|
REGISTER_LONG_CONSTANT(_name, _value, CONST_CS | CONST_PERSISTENT);
|
||||||
|
|
||||||
|
#define PHP_GNUPG_REG_CONST_STR(_name, _value) \
|
||||||
|
REGISTER_STRING_CONSTANT(_name, _value, CONST_CS | CONST_PERSISTENT);
|
||||||
|
|
||||||
|
#define PHP_GNUPG_VERSION_BUF_SIZE 64
|
||||||
|
|
||||||
/* {{{ PHP_MINIT_FUNCTION
|
/* {{{ PHP_MINIT_FUNCTION
|
||||||
*/
|
*/
|
||||||
PHP_MINIT_FUNCTION(gnupg)
|
PHP_MINIT_FUNCTION(gnupg)
|
||||||
{
|
{
|
||||||
zend_class_entry ce;
|
zend_class_entry ce;
|
||||||
|
char php_gpgme_version[PHP_GNUPG_VERSION_BUF_SIZE];
|
||||||
|
|
||||||
/* init class */
|
/* init class */
|
||||||
INIT_CLASS_ENTRY(ce, "gnupg", gnupg_methods);
|
INIT_CLASS_ENTRY(ce, "gnupg", gnupg_methods);
|
||||||
|
@ -545,8 +551,10 @@ PHP_MINIT_FUNCTION(gnupg)
|
||||||
PHP_GNUPG_REG_CONST("GNUPG_ERROR_EXCEPTION", 2);
|
PHP_GNUPG_REG_CONST("GNUPG_ERROR_EXCEPTION", 2);
|
||||||
PHP_GNUPG_REG_CONST("GNUPG_ERROR_SILENT", 3);
|
PHP_GNUPG_REG_CONST("GNUPG_ERROR_SILENT", 3);
|
||||||
|
|
||||||
/* init gpgme subsystems */
|
/* init gpgme subsystems and set the returned version to the constant */
|
||||||
gpgme_check_version(NULL);
|
strncpy(php_gpgme_version, gpgme_check_version(NULL), PHP_GNUPG_VERSION_BUF_SIZE);
|
||||||
|
php_gpgme_version[PHP_GNUPG_VERSION_BUF_SIZE - 1] = '\0';
|
||||||
|
PHP_GNUPG_REG_CONST_STR("GNUPG_GPGME_VERSION", php_gpgme_version);
|
||||||
|
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue