aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/winpty/misc/Win32Echo1.cc
blob: 06fc79f79457ab6be6c3bd87f4f62df8f64cf74d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * A Win32 program that reads raw console input with ReadFile and echos
 * it to stdout.
 */

#include <stdio.h>
#include <conio.h>
#include <windows.h>

int main()
{
    int count = 0;
    HANDLE hStdIn = GetStdHandle(STD_INPUT_HANDLE);
    HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
    SetConsoleMode(hStdIn, 0);

    while (true) {
        DWORD actual;
        char ch;
        ReadFile(hStdIn, &ch, 1, &actual, NULL);
        printf("%02x ", ch);
        if (++count == 50)
            break;
    }
    return 0;
}