getkeyboardlayoutlist (user32)
Last changed: -64.61.143.82

.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern uint GetKeyboardLayoutList(int nBuff, [Out] IntPtr [] lpList);

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

   uint nElements = GetKeyboardLayoutList(0, null);
   IntPtr[] ids = new IntPtr[nElements];
   GetKeyboardLayoutList(ids.Length, ids);

Alternative Managed API:

Do you know one? Please contribute it!

Documentation