Blame apache2/msc_unicode.h

Packit 284210
/*
Packit 284210
* ModSecurity for Apache 2.x, http://www.modsecurity.org/
Packit 284210
* Copyright (c) 2004-2013 Trustwave Holdings, Inc. (http://www.trustwave.com/)
Packit 284210
*
Packit 284210
* You may not use this file except in compliance with
Packit 284210
* the License.  You may obtain a copy of the License at
Packit 284210
*
Packit 284210
*     http://www.apache.org/licenses/LICENSE-2.0
Packit 284210
*
Packit 284210
* If any of the files related to licensing are missing or if you have any
Packit 284210
* other questions related to licensing please contact Trustwave Holdings, Inc.
Packit 284210
* directly using the email address security@modsecurity.org.
Packit 284210
*/
Packit 284210
Packit 284210
#ifndef _MSC_UNICODE_H_
Packit 284210
#define _MSC_UNICODE_H_
Packit 284210
Packit 284210
typedef struct unicode_map unicode_map;
Packit 284210
Packit 284210
#include <apr_file_io.h>
Packit 284210
#include "modsecurity.h"
Packit 284210
#include "apr_hash.h"
Packit 284210
Packit 284210
struct unicode_map {
Packit 284210
    apr_file_t *map;
Packit 284210
    const char *mapfn;
Packit 284210
};
Packit 284210
Packit 284210
int DSOLOCAL unicode_map_init(directory_config *dcfg, const char *mapfn, char **error_msg);
Packit 284210
Packit 284210
#endif