1 | use super::super::*; |
---|---|
2 | use libc::*; |
3 | |
4 | extern "C"{ |
5 | #[cfg(ossl300)] |
6 | pub fn OSSL_PARAM_construct_uint(key: *const c_char, buf: *mut c_uint) -> OSSL_PARAM; |
7 | #[cfg(ossl300)] |
8 | pub fn OSSL_PARAM_construct_end() -> OSSL_PARAM; |
9 | } |
10 |
1 | use super::super::*; |
---|---|
2 | use libc::*; |
3 | |
4 | extern "C"{ |
5 | #[cfg(ossl300)] |
6 | pub fn OSSL_PARAM_construct_uint(key: *const c_char, buf: *mut c_uint) -> OSSL_PARAM; |
7 | #[cfg(ossl300)] |
8 | pub fn OSSL_PARAM_construct_end() -> OSSL_PARAM; |
9 | } |
10 |