installed pty
[VSoRC/.git] / node_modules / node-pty / deps / winpty / misc / SetCursorPos.cc
1 #include <windows.h>
2
3 #include "TestUtil.cc"
4
5 int main(int argc, char *argv[]) {
6     int col = atoi(argv[1]);
7     int row = atoi(argv[2]);
8     setCursorPos(col, row);
9     return 0;
10 }