winpty/misc/SetCursorPos.cc
2016-06-03 22:17:37 -05:00

11 lines
183 B
C++

#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;
}