cef 145.3.0+145.0.25

Use cef in Rust
Documentation
#![doc = include_str!("../README.md")]

pub mod args;
pub mod rc;
pub mod string;
pub mod window_info;
pub mod wrapper;

#[cfg(target_os = "macos")]
pub mod application_mac;

#[cfg(target_os = "macos")]
pub mod library_loader;

#[cfg(target_os = "macos")]
pub mod sandbox;

#[cfg(feature = "accelerated_osr")]
pub mod osr_texture_import;

#[cfg(feature = "build-util")]
pub mod build_util;

#[rustfmt::skip]
mod bindings;
pub use bindings::*;

pub use rc::Rc as _;

pub use cef_dll_sys as sys;

#[cfg(all(
    not(any(target_os = "macos", target_os = "windows", target_os = "linux")),
    feature = "accelerated_osr"
))]
compile_error!("accelerated_osr not supported on this platform");

pub const SEEK_SET: i32 = 0;
pub const SEEK_CUR: i32 = 1;
pub const SEEK_END: i32 = 2;