123456789101112131415161718192021222324252627282930313233 |
- #ifndef PHP_EXT_SYSLOG_H
- #define PHP_EXT_SYSLOG_H
- #ifdef HAVE_SYSLOG_H
- #include "php_syslog.h"
- PHP_MINIT_FUNCTION(syslog);
- PHP_RINIT_FUNCTION(syslog);
- #ifdef PHP_WIN32
- PHP_RSHUTDOWN_FUNCTION(syslog);
- #endif
- PHP_MSHUTDOWN_FUNCTION(syslog);
- #endif
- #endif
|