CopyAcceleratorTable

[DllImport("user32.dll", SetLastError = true)]
public static extern int CopyAcceleratorTable(
   IntPtr hAccelSrc,
   IntPtr lpAccelDst,
   int cAccelEntries
);

Microsoft documentation: Link

Last updated