ImmAssociateContext method

Pointer<HIMC__> ImmAssociateContext(
  1. Pointer<HWND__> arg0,
  2. Pointer<HIMC__> arg1
)

Implementation

ffi.Pointer<HIMC__> ImmAssociateContext(
  ffi.Pointer<HWND__> arg0,
  ffi.Pointer<HIMC__> arg1,
) {
  return (_ImmAssociateContext ??= _dylib.lookupFunction<
      _c_ImmAssociateContext,
      _dart_ImmAssociateContext>('ImmAssociateContext'))(
    arg0,
    arg1,
  );
}