예제 #1
0
 private static extern int SendInput(int numberOfInputs, ref Input input, int structSize);
예제 #2
0
 private static void SendInput(Input input)
 {
     SendInput(1, ref input, Marshal.SizeOf(typeof (Input)));
 }
예제 #3
0
파일: Mouse.cs 프로젝트: domik82/white
 private static void SendInput(Input input)
 {
     SendInput(1, ref input, Marshal.SizeOf(input));
     //            SendInput(1, new[] {input}, Marshal.SizeOf(input));
 }