]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/internal/conf.h
Copyright consolidation 03/10
[thirdparty/openssl.git] / include / internal / conf.h
CommitLineData
f672aee4 1/*
21dcbebc 2 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
f672aee4 3 *
21dcbebc
RS
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
f672aee4
RS
8 */
9
10#ifndef HEADER_INTERNAL_CONF_H
056be06b 11# define HEADER_INTERNAL_CONF_H
f672aee4
RS
12
13#include <openssl/conf.h>
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
7253fd55
RS
19
20struct ossl_init_settings_st {
21 char *config_name;
22};
23
b3599dbb
MC
24void openssl_config_int(const char *config_name);
25void openssl_no_config_int(void);
26void conf_modules_free_int(void);
f672aee4
RS
27
28#ifdef __cplusplus
29}
30#endif
31
32#endif