17 #ifndef MOD_AUTHZ_DBD_H
18 #define MOD_AUTHZ_DBD_H
25 #define AUTHZ_DBD_DECLARE(type) type
26 #define AUTHZ_DBD_DECLARE_NONSTD(type) type
27 #define AUTHZ_DBD_DECLARE_DATA
28 #elif defined(AUTHZ_DBD_DECLARE_STATIC)
29 #define AUTHZ_DBD_DECLARE(type) type __stdcall
30 #define AUTHZ_DBD_DECLARE_NONSTD(type) type
31 #define AUTHZ_DBD_DECLARE_DATA
32 #elif defined(AUTHZ_DBD_DECLARE_EXPORT)
33 #define AUTHZ_DBD_DECLARE(type) __declspec(dllexport) type __stdcall
34 #define AUTHZ_DBD_DECLARE_NONSTD(type) __declspec(dllexport) type
35 #define AUTHZ_DBD_DECLARE_DATA __declspec(dllexport)
37 #define AUTHZ_DBD_DECLARE(type) __declspec(dllimport) type __stdcall
38 #define AUTHZ_DBD_DECLARE_NONSTD(type) __declspec(dllimport) type
39 #define AUTHZ_DBD_DECLARE_DATA __declspec(dllimport)
#define APR_DECLARE_EXTERNAL_HOOK(ns, link, ret, name, args)
Definition: apr_hooks.h:118
request_rec * r
Definition: mod_dav.h:518
A structure that represents the current request.
Definition: httpd.h:856