v8js_generator_export.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | http://www.opensource.org/licenses/mit-license.php MIT License |
  8. +----------------------------------------------------------------------+
  9. | Author: Stefan Siegl <[email protected]> |
  10. +----------------------------------------------------------------------+
  11. */
  12. #ifndef V8JS_GENERATOR_EXPORT_H
  13. #define V8JS_GENERATOR_EXPORT_H
  14. #ifdef V8JS_GENERATOR_EXPORT_SUPPORT
  15. v8::Local<v8::Value> v8js_wrap_generator(v8::Isolate *isolate, v8::Local<v8::Value> wrapped_object);
  16. #endif /* V8JS_GENERATOR_EXPORT_SUPPORT */
  17. #endif /* V8JS_GENERATOR_EXPORT_H */
  18. /*
  19. * Local variables:
  20. * mode: c++
  21. * tab-width: 4
  22. * c-basic-offset: 4
  23. * End:
  24. * vim600: noet sw=4 ts=4 fdm=marker
  25. * vim<600: noet sw=4 ts=4
  26. */