php_xmlwriter.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt. |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Rob Richards <rrichards@php.net> |
  16. | Pierre-A. Joye <pajoye@php.net> |
  17. +----------------------------------------------------------------------+
  18. */
  19. #ifndef PHP_XMLWRITER_H
  20. #define PHP_XMLWRITER_H
  21. extern zend_module_entry xmlwriter_module_entry;
  22. #define phpext_xmlwriter_ptr &xmlwriter_module_entry
  23. #include "php_version.h"
  24. #define PHP_XMLWRITER_VERSION PHP_VERSION
  25. #ifdef ZTS
  26. #include "TSRM.h"
  27. #endif
  28. #include <libxml/tree.h>
  29. #include <libxml/xmlwriter.h>
  30. #include <libxml/uri.h>
  31. /* Resource struct, not the object :) */
  32. typedef struct _xmlwriter_object {
  33. xmlTextWriterPtr ptr;
  34. xmlBufferPtr output;
  35. } xmlwriter_object;
  36. /* Extends zend object */
  37. typedef struct _ze_xmlwriter_object {
  38. xmlwriter_object *xmlwriter_ptr;
  39. zend_object std;
  40. } ze_xmlwriter_object;
  41. static inline ze_xmlwriter_object *php_xmlwriter_fetch_object(zend_object *obj) {
  42. return (ze_xmlwriter_object *)((char*)(obj) - XtOffsetOf(ze_xmlwriter_object, std));
  43. }
  44. #define Z_XMLWRITER_P(zv) php_xmlwriter_fetch_object(Z_OBJ_P((zv)))
  45. #endif /* PHP_XMLWRITER_H */
  46. /*
  47. * Local variables:
  48. * tab-width: 4
  49. * c-basic-offset: 4
  50. * End:
  51. * vim600: noet sw=4 ts=4 fdm=marker
  52. * vim<600: noet sw=4 ts=4
  53. */