diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2016-09-28 13:26:08 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2016-09-28 13:26:08 +0200 |
commit | e5d75d72688fb047ab1dbc7b19e51fe4a3dc0fc9 (patch) | |
tree | 19b723c8d4c4b71c7a1e697148527dc7b52e5534 /sapi/phpdbg/phpdbg_cmd.h | |
parent | 21f0be4792f60d303ddd025803ac647620b2a8f1 (diff) | |
download | php-git-e5d75d72688fb047ab1dbc7b19e51fe4a3dc0fc9.tar.gz |
Add phpdbg generator command
Diffstat (limited to 'sapi/phpdbg/phpdbg_cmd.h')
-rw-r--r-- | sapi/phpdbg/phpdbg_cmd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg_cmd.h b/sapi/phpdbg/phpdbg_cmd.h index cbf2a8793d..1ecfd62705 100644 --- a/sapi/phpdbg/phpdbg_cmd.h +++ b/sapi/phpdbg/phpdbg_cmd.h @@ -22,6 +22,7 @@ #define PHPDBG_CMD_H #include "TSRM.h" +#include "zend_generators.h" /* {{{ Command and Parameter */ enum { @@ -113,6 +114,7 @@ struct _phpdbg_command_t { typedef struct { int num; + zend_generator *generator; zend_execute_data *execute_data; } phpdbg_frame_t; /* }}} */ |