コード例 #1
0
ファイル: Kernel.cs プロジェクト: SameerOmar/InkMon
 public static extern int WriteConsoleOutputCharacter(IntPtr hConsoleOutput, string lpCharacter, int nLength,
     COORD dwWriteCoord, ref int lpNumberOfCharsWritten);
コード例 #2
0
ファイル: Kernel.cs プロジェクト: SameerOmar/InkMon
 public static extern int WriteConsoleOutput(IntPtr hConsoleOutput, ref CHAR_INFO lpBuffer, COORD dwBufferSize,
     COORD dwBufferCoord, ref SMALL_RECT lpWriteRegion);
コード例 #3
0
ファイル: Kernel.cs プロジェクト: SameerOmar/InkMon
 public static extern int WriteConsoleOutputAttribute(IntPtr hConsoleOutput, short lpAttribute, int nLength,
     COORD dwWriteCoord, ref int lpNumberOfAttrsWritten);
コード例 #4
0
ファイル: Kernel.cs プロジェクト: SameerOmar/InkMon
 public static extern int SetConsoleScreenBufferSize(IntPtr hConsoleOutput, COORD dwSize);
コード例 #5
0
ファイル: Kernel.cs プロジェクト: SameerOmar/InkMon
 public static extern int SetConsoleCursorPosition(IntPtr hConsoleOutput, COORD dwCursorPosition);
コード例 #6
0
ファイル: Kernel.cs プロジェクト: SameerOmar/InkMon
 public static extern int ScrollConsoleScreenBuffer(IntPtr hConsoleOutput, ref SMALL_RECT lpScrollRectangle,
     ref SMALL_RECT lpClipRectangle, COORD dwDestinationOrigin, ref CHAR_INFO lpFill);
コード例 #7
0
ファイル: Kernel.cs プロジェクト: SameerOmar/InkMon
 public static extern int ReadConsoleOutputCharacter(IntPtr hConsoleOutput, string lpCharacter, int nLength,
     COORD dwReadCoord, ref int lpNumberOfCharsRead);
コード例 #8
0
ファイル: Kernel.cs プロジェクト: SameerOmar/InkMon
 public static extern int ReadConsoleOutputAttribute(IntPtr hConsoleOutput, ref int lpAttribute, int nLength,
     COORD dwReadCoord, ref int lpNumberOfAttrsRead);