pub unsafe extern "system" fn CreateThread(
    lpthreadattributes: *const SECURITY_ATTRIBUTES,
    dwstacksize: usize,
    lpstartaddress: Option<unsafe extern "system" fn(lpthreadparameter: *mut c_void) -> u32>,
    lpparameter: *const c_void,
    dwcreationflags: u32,
    lpthreadid: *mut u32
) -> *mut c_void
🔬This is a nightly-only experimental API. (windows_c)