File: msgpack_errors.h

package info (click to toggle)
php-msgpack 1%3A3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,224 kB
  • sloc: ansic: 3,925; xml: 458; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef MSGPACK_ERRORS_H
#define MSGPACK_ERRORS_H

#define MSGPACK_NOTICE(...)                \
    if (MSGPACK_G(error_display)) {        \
        zend_error(E_NOTICE, __VA_ARGS__); \
    }

#define MSGPACK_WARNING(...)                \
    if (MSGPACK_G(error_display)) {         \
        zend_error(E_WARNING, __VA_ARGS__); \
    }

#define MSGPACK_ERROR(...) zend_error(E_ERROR, __VA_ARGS__)

#endif