php_bz2.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 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: Sterling Hughes <sterling@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifndef PHP_BZ2_H
  20. #define PHP_BZ2_H
  21. #if HAVE_BZ2
  22. extern zend_module_entry bz2_module_entry;
  23. #define phpext_bz2_ptr &bz2_module_entry
  24. /* Bzip2 includes */
  25. #include <bzlib.h>
  26. #else
  27. #define phpext_bz2_ptr NULL
  28. #endif
  29. #ifdef PHP_WIN32
  30. # ifdef PHP_BZ2_EXPORTS
  31. # define PHP_BZ2_API __declspec(dllexport)
  32. # elif defined(COMPILE_DL_BZ2)
  33. # define PHP_BZ2_API __declspec(dllimport)
  34. # else
  35. # define PHP_BZ2_API /* nothing special */
  36. # endif
  37. #elif defined(__GNUC__) && __GNUC__ >= 4
  38. # define PHP_BZ2_API __attribute__ ((visibility("default")))
  39. #else
  40. # define PHP_BZ2_API
  41. #endif
  42. PHP_BZ2_API php_stream *_php_stream_bz2open(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
  43. PHP_BZ2_API php_stream *_php_stream_bz2open_from_BZFILE(BZFILE *bz, const char *mode, php_stream *innerstream STREAMS_DC TSRMLS_DC);
  44. #define php_stream_bz2open_from_BZFILE(bz, mode, innerstream) _php_stream_bz2open_from_BZFILE((bz), (mode), (innerstream) STREAMS_CC TSRMLS_CC)
  45. #define php_stream_bz2open(wrapper, path, mode, options, opened_path) _php_stream_bz2open((wrapper), (path), (mode), (options), (opened_path), NULL STREAMS_CC TSRMLS_CC)
  46. extern php_stream_filter_factory php_bz2_filter_factory;
  47. extern php_stream_ops php_stream_bz2io_ops;
  48. #define PHP_STREAM_IS_BZIP2 &php_stream_bz2io_ops
  49. /* 400kb */
  50. #define PHP_BZ2_FILTER_DEFAULT_BLOCKSIZE 4
  51. /* BZ2 Internal Default */
  52. #define PHP_BZ2_FILTER_DEFAULT_WORKFACTOR 0
  53. #endif
  54. /*
  55. * Local variables:
  56. * tab-width: 4
  57. * c-basic-offset: 4
  58. * End:
  59. */