blob: 002640990f1a681cf9d23b617dadb8ab30677b1b [file] [log] [blame]
// stub module to test header files' C++ compatibility
extern "C" {
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_event.h>
#include <ngx_event_connect.h>
#include <ngx_event_pipe.h>
#include <ngx_http.h>
#include <ngx_mail.h>
#include <ngx_mail_pop3_module.h>
#include <ngx_mail_imap_module.h>
#include <ngx_mail_smtp_module.h>
#include <ngx_stream.h>
}
// nginx header files should go before other, because they define 64-bit off_t
// #include <string>
void ngx_cpp_test_handler(void *data);
void
ngx_cpp_test_handler(void *data)
{
return;
}