winpty/misc/SetCursorPos.cc

12 lines
223 B
C++
Executable File

#include <windows.h>
#include "TestUtil.cc"
#include "../src/shared/DebugClient.cc"
int main(int argc, char *argv[]) {
int col = atoi(argv[1]);
int row = atoi(argv[2]);
setCursorPos(col, row);
return 0;
}