nativeshell 0.1.0

NativeShell Rust package
Documentation
use std::{ptr::null_mut, rc::Rc};

use crate::shell::Context;

use super::{
    all_bindings::*,
    dpi::become_dpi_aware,
    dxgi_hook::init_dxgi_hook,
    error::PlatformResult,
    util::{direct_composition_supported, HRESULTExt},
};

pub fn init_platform(_context: Rc<Context>) -> PlatformResult<()> {
    unsafe {
        // Angle will try opening these with GetModuleHandleEx, which means they need to be
        // loaded first; Otherwise it falls back to d3dcompiler_47, which is not present on
        // some Windows 7 installations.
        #[allow(clippy::collapsible_if)]
        if LoadLibraryW("d3dcompiler_47.dll").0 == 0 {
            if LoadLibraryW("d3dcompiler_46.dll").0 == 0 {
                LoadLibraryW("d3dcompiler_43.dll");
            }
        }

        CoInitializeEx(null_mut(), COINIT_APARTMENTTHREADED).as_platform_result()?;

        OleInitialize(null_mut()).as_platform_result()?;

        // Needed for direct composition check
        LoadLibraryW("dcomp.dll");
    }
    if direct_composition_supported() {
        init_dxgi_hook();
    }
    become_dpi_aware();
    Ok(())
}