Пример #1
0
void consoleCmdOpen(char *path) {
	consoleCmdSource(path);
}
Пример #2
0
void consoleExecFile(char *path) {
	consoleCmdSource(path);
	char *err=scriptCatchException();
	if (err)
		consolePrintErr(err);
}