exception.h 897 B

123456789101112131415161718192021222324
  1. /*
  2. +----------------------------------------------------------------------+
  3. | XlsWriter Extension |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 2017-2018 The Viest |
  6. +----------------------------------------------------------------------+
  7. | http://www.viest.me |
  8. +----------------------------------------------------------------------+
  9. | Author: viest <[email protected]> |
  10. +----------------------------------------------------------------------+
  11. */
  12. #ifndef VTIFUL_XLS_EXCEPTION_H
  13. #define VTIFUL_XLS_EXCEPTION_H
  14. #include "common.h"
  15. extern zend_class_entry *vtiful_exception_ce;
  16. VTIFUL_STARTUP_FUNCTION(exception);
  17. char* exception_message_map(int code);
  18. #endif