GWinWrap/src/versions/0.0.1/gwinwrap_exec_bin.cpp

11 lines
170 B
C++
Raw Normal View History

2019-05-05 09:02:35 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
using namespace std;
int main() {
chdir("/opt/GWinWrap/");
2019-05-06 03:25:06 +00:00
system("python3 GWinWrap.py");
2019-05-05 09:02:35 +00:00
return 0;
}