blob: 8f87dcdad609576fe19aabae6738dc98368f48d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// stub module to test header files' C++ compatibilty
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>
}
// nginx header files should go before other, because they define 64-bit off_t
// #include <string>
void
ngx_cpp_test_handler(void *data)
{
return;
}
|