IActiveIMMIME::InstallIMEW method

Installs an Active Input Method Editor (IME) into the system. (Unicode implementation).

Syntax

HRESULT InstallIMEW(
  [in]  LPWSTR szIMEFileName,
  [in]  LPWSTR szLayoutText,
  [out] HKL    *phKL
);

Parameters

  • szIMEFileName [in]
    The address of a null-terminated string value that specifies the full path of the Active IME.

  • szLayoutText [in]
    The address of a null-terminated string value that specifies the name of the Active IME. This name also specifies the layout text of the Active IME.

  • phKL [out]
    The address of the handle to the keyboard layout for the Active IME.

Return value

Returns S_OK if successful, or an error value otherwise.

Remarks

This method maps to the ImmInstallIME function that is documented in the Windows Software Development Kit (SDK).

Requirements

Minimum supported client

Windows XP

Minimum supported server

Windows 2000 Server

Header

Dimm.h

IDL

Dimm.idl

See also

IActiveIMMIME

InstallIMEA