xref: /netbsd-src/crypto/external/bsd/openssl/dist/include/internal/conf.h (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1 /*
2  * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
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
8  */
9 
10 #ifndef HEADER_INTERNAL_CONF_H
11 # define HEADER_INTERNAL_CONF_H
12 
13 #include <openssl/conf.h>
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 
20 struct ossl_init_settings_st {
21     char *appname;
22 };
23 
24 void openssl_config_int(const char *appname);
25 void openssl_no_config_int(void);
26 void conf_modules_free_int(void);
27 
28 #ifdef __cplusplus
29 }
30 #endif
31 
32 #endif
33