mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 14:48:40 +00:00
26 lines
932 B
C
26 lines
932 B
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| PHP Version 5 |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 1997-2015 The PHP Group |
|
|
+----------------------------------------------------------------------+
|
|
| http://www.opensource.org/licenses/mit-license.php MIT License |
|
|
+----------------------------------------------------------------------+
|
|
| Author: Stefan Siegl <stesie@brokenpipe.de> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef V8JS_DEBUG_H
|
|
#define V8JS_DEBUG_H
|
|
|
|
#include <v8-debug.h>
|
|
|
|
extern PHP_METHOD(V8Js, __destruct);
|
|
extern PHP_METHOD(V8Js, startDebugAgent);
|
|
|
|
extern v8js_ctx *v8js_debug_context;
|
|
extern int v8js_debug_auto_break_mode;
|
|
|
|
#endif /* V8JS_DEBUG_H */
|
|
|