quitando basura del index
[VSoRC/.git] / node_modules / node-pty / deps / winpty / misc / Win32Write1.cc
diff --git a/node_modules/node-pty/deps/winpty/misc/Win32Write1.cc b/node_modules/node-pty/deps/winpty/misc/Win32Write1.cc
deleted file mode 100644 (file)
index 6e5bf96..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/* 
- * A Win32 program that scrolls and writes to the console using the ioctl-like
- * interface.
- */
-
-#include <stdio.h>
-#include <windows.h>
-
-int main()
-{
-    HANDLE conout = GetStdHandle(STD_OUTPUT_HANDLE);
-
-    for (int i = 0; i < 80; ++i) {
-
-        CONSOLE_SCREEN_BUFFER_INFO info;
-        GetConsoleScreenBufferInfo(conout, &info);
-
-        SMALL_RECT src = { 0, 1, info.dwSize.X - 1, info.dwSize.Y - 1 };
-        COORD destOrigin = { 0, 0 };
-        CHAR_INFO fillCharInfo = { 0 };
-        fillCharInfo.Char.AsciiChar = ' ';
-        fillCharInfo.Attributes = 7;
-        ScrollConsoleScreenBuffer(conout,
-                                  &src,
-                                  NULL,
-                                  destOrigin,
-                                  &fillCharInfo);
-
-        CHAR_INFO buffer = { 0 };
-        buffer.Char.AsciiChar = 'X';
-        buffer.Attributes = 7;
-        COORD bufferSize = { 1, 1 };
-        COORD bufferCoord = { 0, 0 };
-        SMALL_RECT writeRegion = { 0, 0, 0, 0 };
-        writeRegion.Left = writeRegion.Right = i;
-        writeRegion.Top = writeRegion.Bottom = 5;
-        WriteConsoleOutput(conout, 
-                           &buffer, bufferSize, bufferCoord,
-                           &writeRegion);
-
-        Sleep(250);
-    }
-    return 0;
-}