We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad0c2c commit b151859Copy full SHA for b151859
openssl-sys/src/engine.rs
@@ -48,6 +48,9 @@ extern "C" {
48
) -> c_int;
49
}
50
51
+type UI = c_int;
52
+type UI_STRING = c_int;
53
+
54
#[repr(C)]
55
pub struct UI_METHOD {
56
name: *const c_char,
@@ -66,23 +69,6 @@ pub struct UI_METHOD {
66
69
const UI_FLAG_REDOABLE: c_int = 0x0001;
67
70
const UI_FLAG_PRINT_ERRORS: c_int = 0x0100;
68
71
-#[repr(C)]
-pub struct UI {
- meth: *const UI_METHOD,
72
- strings: *mut c_void,
73
- user_data: *mut c_void,
74
- ex_data: CRYPTO_EX_DATA,
75
- flags: c_int,
76
-}
77
-
78
79
-pub struct UI_STRING {
80
- string_type: UI_string_types,
81
- out_string: *const c_char,
82
- input_flags: c_int,
83
- result_buf: *mut c_char,
84
85
86
87
pub enum UI_string_types {
88
UIT_NONE = 0,
0 commit comments