1use super::super::*; 2 3const_ptr_api! { 4 extern "C" { 5 pub fn NCONF_new(meth: #[const_ptr_if(libressl400)] CONF_METHOD) -> *mut CONF; 6 } 7} 8 9extern "C" { 10 #[cfg(not(libressl400))] 11 pub fn NCONF_default() -> *mut CONF_METHOD; 12 pub fn NCONF_free(conf: *mut CONF); 13}