pub unsafe fn ScriptPlaceOpenType<P0, P1>(
    hdc: P0,
    psc: *mut *mut c_void,
    psa: *mut SCRIPT_ANALYSIS,
    tagscript: u32,
    taglangsys: u32,
    rcrangechars: Option<*const i32>,
    rprangeproperties: Option<*const *const TEXTRANGE_PROPERTIES>,
    cranges: i32,
    pwcchars: P1,
    pwlogclust: *const u16,
    pcharprops: *const SCRIPT_CHARPROP,
    cchars: i32,
    pwglyphs: *const u16,
    pglyphprops: *const SCRIPT_GLYPHPROP,
    cglyphs: i32,
    piadvance: *mut i32,
    pgoffset: *mut GOFFSET,
    pabc: Option<*mut ABC>
) -> Result<()>
where P0: IntoParam<HDC>, P1: IntoParam<PCWSTR>,