GWinWrap/src/versions/0.0.1/gwinwrap_exec_bin.cpp

11 lines
170 B
C++

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
using namespace std;
int main() {
chdir("/opt/GWinWrap/");
system("python3 GWinWrap.py");
return 0;
}