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 b151859 commit 6a34b60Copy full SHA for 6a34b60
openssl-sys/src/engine.rs
@@ -46,6 +46,14 @@ extern "C" {
46
ui_method: *mut UI_METHOD,
47
callback_data: *mut c_void,
48
) -> c_int;
49
+
50
+ pub fn UI_set_default_method(const UI_METHOD *meth);
51
+ pub fn UI_get_default_method() -> *const UI_METHOD;
52
+ pub fn UI_get_method(ui: *mut UI) -> *const UI_METHOD;
53
+ pub fn UI_set_method(ui: *mut UI, meth: *const UI_METHOD) -> *const UI_METHOD;
54
55
+ pub fn UI_OpenSSL() -> *mut UI_METHOD;
56
+ pub fn UI_null(void) -> *const UI_METHOD;
57
}
58
59
type UI = c_int;
0 commit comments