public static extern void CopyMemory(ref Kbdllhookstruct Source, IntPtr Destination, int Length);
private int GetKeyCode(IntPtr oPare) { kbdllhs = new Kbdllhookstruct(); CopyMemory(ref kbdllhs, oPare, 20); return(kbdllhs.vkCode); }