Ejemplo n.º 1
0
 public static extern bool ReadConsoleOutputCharacter(IntPtr hConsoleOutput, StringBuilder lpCharacter, uint nLength, COORD dwReadCoord, out uint lpNumberOfCharsRead);
Ejemplo n.º 2
0
 public static extern bool ReadConsoleOutputAttribute(IntPtr hConsoleOutput, [Out] ushort [] lpAttribute, uint nLength, COORD dwReadCoord, out uint lpNumberOfAttrsRead);
Ejemplo n.º 3
0
 public static extern bool FillConsoleOutAttributes(IntPtr hConsoleOutput, ushort wAttribute, uint nLength, COORD dwWriteCoord, out uint lpNumberOfAttrsWritten);
Ejemplo n.º 4
0
 public static extern bool WriteConsoleOutputCharacter(IntPtr hConsoleOutput, StringBuilder lpCharacter, uint nLength, COORD dwWriteCoord, out uint lpNumberOfCharsWritten);
Ejemplo n.º 5
0
 public static extern bool SetConsoleScreenBufferSize(IntPtr hConsoleOutput, COORD dwSize);
Ejemplo n.º 6
0
 public static extern bool SetConsoleCursorPosition(IntPtr hConsoleOutput, COORD dwCursorPosition);