mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Generate ext/intl class entries from stubs
Closes GH-6670
This commit is contained in:
parent
99b08ac281
commit
c6723728df
44 changed files with 276 additions and 157 deletions
|
@ -24,7 +24,7 @@
|
|||
extern "C" {
|
||||
#define USE_BREAKITERATOR_POINTER
|
||||
#include "breakiterator_class.h"
|
||||
#include "breakiterator_arginfo.h"
|
||||
#include "breakiterator_iterators_arginfo.h"
|
||||
#include "../intl_convert.h"
|
||||
#include "../locale/locale.h"
|
||||
#include <zend_exceptions.h>
|
||||
|
@ -287,12 +287,8 @@ U_CFUNC PHP_METHOD(IntlPartsIterator, getBreakIterator)
|
|||
|
||||
U_CFUNC void breakiterator_register_IntlPartsIterator_class(void)
|
||||
{
|
||||
zend_class_entry ce;
|
||||
|
||||
/* Create and register 'BreakIterator' class. */
|
||||
INIT_CLASS_ENTRY(ce, "IntlPartsIterator", class_IntlPartsIterator_methods);
|
||||
IntlPartsIterator_ce_ptr = zend_register_internal_class_ex(&ce,
|
||||
IntlIterator_ce_ptr);
|
||||
IntlPartsIterator_ce_ptr = register_class_IntlPartsIterator(IntlIterator_ce_ptr);
|
||||
IntlPartsIterator_ce_ptr->create_object = IntlPartsIterator_object_create;
|
||||
|
||||
memcpy(&IntlPartsIterator_handlers, &IntlIterator_handlers,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue