1
0
mirror of https://github.com/php/php-src.git synced 2026-04-07 08:02:49 +02:00

Fix bug #62651: source level BC break

Break for C++ extensions that don't wrap the includes of PHP libraries
in extern "C" {.
This commit is contained in:
Gustavo André dos Santos Lopes
2012-07-26 23:37:02 +02:00
parent 7d890eef82
commit ccffec74d0

View File

@@ -23,12 +23,14 @@
#include "zend.h"
BEGIN_EXTERN_C()
ZEND_API extern const char *(*zend_new_interned_string)(const char *str, int len, int free_src TSRMLS_DC);
ZEND_API extern void (*zend_interned_strings_snapshot)(TSRMLS_D);
ZEND_API extern void (*zend_interned_strings_restore)(TSRMLS_D);
void zend_interned_strings_init(TSRMLS_D);
void zend_interned_strings_dtor(TSRMLS_D);
END_EXTERN_C()
#ifndef ZTS