aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/winpty/misc/SetCursorPos.cc
blob: d20fdbdfc0dfa6415536ffbde94de9cf6bd08c49 (plain)
1
2
3
4
5
6
7
8
9
10
#include <windows.h>

#include "TestUtil.cc"

int main(int argc, char *argv[]) {
    int col = atoi(argv[1]);
    int row = atoi(argv[2]);
    setCursorPos(col, row);
    return 0;
}