예제 #1
0
파일: Instance.cs 프로젝트: Windower/Helper
 public void Block(InputKinds kind)
 {
     WindowerException.Check(NativeMethods.windower_block(this.handle, kind));
 }
예제 #2
0
 public void Unblock(InputKinds kind)
 {
     WindowerException.Check(NativeMethods.windower_unblock(this.handle, kind));
 }
예제 #3
0
 internal static extern ErrorCode windower_block(SafeInstanceHandle handle, InputKinds input_kind);