PageRenderTime 49ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/xdebug_trace_textual.h

http://github.com/derickr/xdebug
C Header | 30 lines | 10 code | 3 blank | 17 comment | 0 complexity | d3f513da766829264343630644269441 MD5 | raw file
Possible License(s): MPL-2.0-no-copyleft-exception
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Xdebug |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 2002-2016 Derick Rethans |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 1.0 of the Xdebug license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available at through the world-wide-web at |
  10. | http://xdebug.derickrethans.nl/license.php |
  11. | If you did not receive a copy of the Xdebug license and are unable |
  12. | to obtain it through the world-wide-web, please send a note to |
  13. | xdebug@derickrethans.nl so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Derick Rethans <derick@xdebug.org> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef XDEBUG_TRACE_TEXTUAL_H
  19. #define XDEBUG_TRACE_TEXTUAL_H
  20. #include "xdebug_tracing.h"
  21. typedef struct _xdebug_trace_textual_context
  22. {
  23. FILE *trace_file;
  24. char *trace_filename;
  25. } xdebug_trace_textual_context;
  26. extern xdebug_trace_handler_t xdebug_trace_handler_textual;
  27. #endif