forked from xdebug/xdebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdebug_trace_html.h
30 lines (27 loc) · 1.38 KB
/
xdebug_trace_html.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
+----------------------------------------------------------------------+
| Xdebug |
+----------------------------------------------------------------------+
| Copyright (c) 2002-2018 Derick Rethans |
+----------------------------------------------------------------------+
| This source file is subject to version 1.01 of the Xdebug license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| https://xdebug.org/license.php |
| If you did not receive a copy of the Xdebug license and are unable |
| to obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Derick Rethans <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifndef XDEBUG_TRACE_HTML_H
#define XDEBUG_TRACE_HTML_H
#include "xdebug_tracing.h"
typedef struct _xdebug_trace_html_context
{
FILE *trace_file;
char *trace_filename;
} xdebug_trace_html_context;
extern xdebug_trace_handler_t xdebug_trace_handler_html;
#endif