Blame modules/aaa/mod_authz_dbd.h

Packit 90a5c9
/* Licensed to the Apache Software Foundation (ASF) under one or more
Packit 90a5c9
 * contributor license agreements.  See the NOTICE file distributed with
Packit 90a5c9
 * this work for additional information regarding copyright ownership.
Packit 90a5c9
 * The ASF licenses this file to You under the Apache License, Version 2.0
Packit 90a5c9
 * (the "License"); you may not use this file except in compliance with
Packit 90a5c9
 * the License.  You may obtain a copy of the License at
Packit 90a5c9
 *
Packit 90a5c9
 *     http://www.apache.org/licenses/LICENSE-2.0
Packit 90a5c9
 *
Packit 90a5c9
 * Unless required by applicable law or agreed to in writing, software
Packit 90a5c9
 * distributed under the License is distributed on an "AS IS" BASIS,
Packit 90a5c9
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Packit 90a5c9
 * See the License for the specific language governing permissions and
Packit 90a5c9
 * limitations under the License.
Packit 90a5c9
 */
Packit 90a5c9
Packit 90a5c9
#ifndef MOD_AUTHZ_DBD_H
Packit 90a5c9
#define MOD_AUTHZ_DBD_H
Packit 90a5c9
#include "httpd.h"
Packit 90a5c9
Packit 90a5c9
/* Create a set of AUTHZ_DBD_DECLARE(type), AUTHZ_DBD_DECLARE_NONSTD(type) and
Packit 90a5c9
 * AUTHZ_DBD_DECLARE_DATA with appropriate export and import tags
Packit 90a5c9
 */
Packit 90a5c9
#if !defined(WIN32)
Packit 90a5c9
#define AUTHZ_DBD_DECLARE(type)            type
Packit 90a5c9
#define AUTHZ_DBD_DECLARE_NONSTD(type)     type
Packit 90a5c9
#define AUTHZ_DBD_DECLARE_DATA
Packit 90a5c9
#elif defined(AUTHZ_DBD_DECLARE_STATIC)
Packit 90a5c9
#define AUTHZ_DBD_DECLARE(type)            type __stdcall
Packit 90a5c9
#define AUTHZ_DBD_DECLARE_NONSTD(type)     type
Packit 90a5c9
#define AUTHZ_DBD_DECLARE_DATA
Packit 90a5c9
#elif defined(AUTHZ_DBD_DECLARE_EXPORT)
Packit 90a5c9
#define AUTHZ_DBD_DECLARE(type)            __declspec(dllexport) type __stdcall
Packit 90a5c9
#define AUTHZ_DBD_DECLARE_NONSTD(type)     __declspec(dllexport) type
Packit 90a5c9
#define AUTHZ_DBD_DECLARE_DATA             __declspec(dllexport)
Packit 90a5c9
#else
Packit 90a5c9
#define AUTHZ_DBD_DECLARE(type)            __declspec(dllimport) type __stdcall
Packit 90a5c9
#define AUTHZ_DBD_DECLARE_NONSTD(type)     __declspec(dllimport) type
Packit 90a5c9
#define AUTHZ_DBD_DECLARE_DATA             __declspec(dllimport)
Packit 90a5c9
#endif
Packit 90a5c9
Packit 90a5c9
APR_DECLARE_EXTERNAL_HOOK(authz_dbd, AUTHZ_DBD, int, client_login,
Packit 90a5c9
                          (request_rec *r, int code, const char *action))
Packit 90a5c9
#endif