diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2014-10-28 17:20:21 +0100 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2014-10-28 17:20:21 +0100 |
commit | 49e31265edac2c67fb5b155f63ec5752af19eac1 (patch) | |
tree | 383d6aec8bba05e6126b049850dd11ce36916ff0 /phpdbg_bp.h | |
parent | b24640f46317c6da2519f052f8647f5cfad6c438 (diff) | |
download | php-git-49e31265edac2c67fb5b155f63ec5752af19eac1.tar.gz |
Remove the ugly hack via a temp file to store breakpoints
Diffstat (limited to 'phpdbg_bp.h')
-rw-r--r-- | phpdbg_bp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpdbg_bp.h b/phpdbg_bp.h index eca595321b..63a9961d2a 100644 --- a/phpdbg_bp.h +++ b/phpdbg_bp.h @@ -157,6 +157,7 @@ PHPDBG_API phpdbg_breakbase_t *phpdbg_find_breakbase(zend_ulong id TSRMLS_DC); PHPDBG_API phpdbg_breakbase_t *phpdbg_find_breakbase_ex(zend_ulong id, HashTable ***table, HashPosition *position TSRMLS_DC); /* }}} */ /* {{{ Breakpoint Exportation API */ -PHPDBG_API void phpdbg_export_breakpoints(FILE *handle TSRMLS_DC); /* }}} */ +PHPDBG_API void phpdbg_export_breakpoints(FILE *handle TSRMLS_DC); +PHPDBG_API void phpdbg_export_breakpoints_to_string(char **str TSRMLS_DC); /* }}} */ #endif /* PHPDBG_BP_H */ |