webview2-sys 0.1.1

Low Level Bindings for WebView2 SDK
Documentation
1
2
3
4
5
6
7
use core::ptr::{null, null_mut};

// Just make sure that we can actually call a function from the SDK, i.e. linking is successful.
#[test]
fn test_linking() {
    unsafe { webview2_sys::CompareBrowserVersions(null(), null(), null_mut()) };
}