コード例 #1
0
ファイル: FLI.cs プロジェクト: maruta01/CalulateFlat
        public void ControlBackgroundFlush(BGFLUSH bgflush)
        {
            int status = FLIControlBackgroundFlush(dev, bgflush);

            if (0 != status)
            {
                throw new Win32Exception(-status);
            }
        }
コード例 #2
0
ファイル: FliSharp.cs プロジェクト: eliotg/FliSharp
 public void ControlBackgroundFlush(BGFLUSH bgflush)
 {
     int status = FLIControlBackgroundFlush(dev, bgflush);
     if (0 != status)
         throw new Win32Exception(-status);
 }
コード例 #3
0
ファイル: FLI.cs プロジェクト: maruta01/CalulateFlat
 private static extern int FLIControlBackgroundFlush(IntPtr dev, BGFLUSH bgflush);
コード例 #4
0
ファイル: FliSharp.cs プロジェクト: eliotg/FliSharp
 private static extern int FLIControlBackgroundFlush(IntPtr dev, BGFLUSH bgflush);