| 637 | |
| 638 | |
| 639 | void mapscript_create_style(styleObj *style, parent_object parent, zval *return_value TSRMLS_DC) |
| 640 | { |
| 641 | php_style_object * php_style; |
| 642 | object_init_ex(return_value, mapscript_ce_style); |
| 643 | php_style = (php_style_object *)zend_object_store_get_object(return_value TSRMLS_CC); |
| 644 | php_style->style = style; |
| 645 | |
| 646 | php_style->parent = parent; |
| 647 | |
| 648 | MAPSCRIPT_ADDREF(parent.val); |
| 649 | } |
| 650 | |
| 651 | static void mapscript_style_object_destroy(void *object TSRMLS_DC) |
| 652 | { |
no outgoing calls
no test coverage detected