netcorehost 0.20.1

A Rust library for hosting the .NET Core runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod error;
pub use error::*;

/// The platform-dependent character type used by the hosting components.
pub type PdChar = crate::bindings::char_t;
/// The unsigned version of the platform-dependent character type used by the hosting components.
#[cfg(windows)]
pub type PdUChar = u16;
/// The unsigned version of the platform-dependent character type used by the hosting components.
#[cfg(not(windows))]
pub type PdUChar = u8;

mod r#impl;
pub use r#impl::*;

mod shared;
pub use shared::*;