Exemplo n.º 1
0
 public static extern int WriteConsoleOutputCharacter(IntPtr hConsoleOutput, string lpCharacter, int nLength,
                                                      COORD dwWriteCoord, ref int lpNumberOfCharsWritten);
Exemplo n.º 2
0
 public static extern int WriteConsoleOutput(IntPtr hConsoleOutput, ref CHAR_INFO lpBuffer, COORD dwBufferSize,
                                             COORD dwBufferCoord, ref SMALL_RECT lpWriteRegion);
Exemplo n.º 3
0
 public static extern int WriteConsoleOutputAttribute(IntPtr hConsoleOutput, short lpAttribute, int nLength,
                                                      COORD dwWriteCoord, ref int lpNumberOfAttrsWritten);
Exemplo n.º 4
0
 public static extern int SetConsoleScreenBufferSize(IntPtr hConsoleOutput, COORD dwSize);
Exemplo n.º 5
0
 public static extern int SetConsoleCursorPosition(IntPtr hConsoleOutput, COORD dwCursorPosition);
Exemplo n.º 6
0
 public static extern int ScrollConsoleScreenBuffer(IntPtr hConsoleOutput, ref SMALL_RECT lpScrollRectangle,
                                                    ref SMALL_RECT lpClipRectangle, COORD dwDestinationOrigin,
                                                    ref CHAR_INFO lpFill);
Exemplo n.º 7
0
 public static extern int ReadConsoleOutputCharacter(IntPtr hConsoleOutput, string lpCharacter, int nLength,
                                                     COORD dwReadCoord, ref int lpNumberOfCharsRead);
Exemplo n.º 8
0
 public static extern int ReadConsoleOutputAttribute(IntPtr hConsoleOutput, ref int lpAttribute, int nLength,
                                                     COORD dwReadCoord, ref int lpNumberOfAttrsRead);