2003-07-23 12:12:24 -04:00
|
|
|
/*
|
|
|
|
* 'OpenSSL for Ruby' project
|
|
|
|
* Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
/*
|
2015-04-19 23:55:09 -04:00
|
|
|
* This program is licensed under the same licence as Ruby.
|
2003-07-23 12:12:24 -04:00
|
|
|
* (See the file 'LICENCE'.)
|
|
|
|
*/
|
|
|
|
#if !defined(_OSSL_CONFIG_H_)
|
|
|
|
#define _OSSL_CONFIG_H_
|
|
|
|
|
|
|
|
extern VALUE cConfig;
|
|
|
|
extern VALUE eConfigError;
|
|
|
|
|
2003-09-08 06:31:38 -04:00
|
|
|
CONF* DupConfigPtr(VALUE obj);
|
2003-07-23 12:12:24 -04:00
|
|
|
void Init_ossl_config(void);
|
|
|
|
|
|
|
|
#endif /* _OSSL_CONFIG_H_ */
|