GetKeyboardLayoutList function user32

int GetKeyboardLayoutList(
  1. int nBuff,
  2. Pointer<IntPtr> lpList
)

Retrieves the input locale identifiers (formerly called keyboard layout handles) corresponding to the current set of input locales in the system. The function copies the identifiers to the specified buffer.

int GetKeyboardLayoutList(
  int nBuff,
  HKL *lpList
);

Implementation

int GetKeyboardLayoutList(int nBuff, Pointer<IntPtr> lpList) =>
    _GetKeyboardLayoutList(nBuff, lpList);