Пример #1
0
 public static extern bool FillConsoleOutputAttribute(
     IntPtr hConsoleOutput, CHARACTER_ATTRIBUTE wAttribute, uint nLength, COORD dwWriteCoord, ref uint lpNumberOfAttrsWritten);
Пример #2
0
 public static extern bool SetConsoleCursorPosition(IntPtr hConsoleOutput, COORD dwCursorPosition);
Пример #3
0
 public static extern bool ScrollConsoleScreenBuffer(
     IntPtr hConsoleOutput, ref SMALL_RECT lpScrollRectangle, ref SMALL_RECT lpClipRectangle, COORD dwDestinationOrigin, ref CHAR_INFO lpFill);
Пример #4
0
 public static extern bool ReadConsoleOutputAttribute(
     IntPtr hConsoleOutput, ref CHARACTER_ATTRIBUTE[] lpAttribute, uint nLength, COORD dwReadCoord, ref uint lpNumberOfAttrsRead);
Пример #5
0
 public static extern bool SetConsoleScreenBufferSize(IntPtr hConsoleOutput, COORD dwSize);
Пример #6
0
 public static extern bool FillConsoleOutputCharacter(
     IntPtr hConsoleOutput, char cCharacter, uint nLength, COORD dwWriteCoord, ref uint lpNumberOfCharsWritten);
Пример #7
0
 public static extern bool ReadConsoleOutputCharacter(
     IntPtr hConsoleOutput, [MarshalAs(UnmanagedType.LPTStr)] StringBuilder lpCharacter, uint nLength, COORD dwReadCoord, ref uint lpNumberOfCharsRead);
Пример #8
0
 public static extern bool WriteConsoleOutputCharacter(
     IntPtr hConsoleOutput, [In] [MarshalAs(UnmanagedType.LPTStr)] string lpCharacter, uint nLength, COORD dwWriteCoord, ref uint lpNumberOfCharsWritten);
Пример #9
0
 public static extern bool ReadConsoleOutput(
     IntPtr hConsoleOutput, ref CHAR_INFO[] lpBuffer, COORD dwBufferSize, COORD dwBufferCoord, ref SMALL_RECT lpReadRegion);