AmandaInterface.AmandaHook.SetInterrupt C# (CSharp) Method

SetInterrupt() private method

private SetInterrupt ( [ b ) : void
b [
return void
        public static extern void SetInterrupt([MarshalAs(UnmanagedType.Bool)] bool b);

Usage Example

示例#1
0
文件: Amanda.cs 项目: remco138/amanda
 public void SetInterrupt(bool b)
 {
     AmandaHook.SetInterrupt(b);
 }