Blame apache2/msc_unicode.h

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