VS_API(VSNodeRef *) vseval_getOutput(VSScript *handle, int index) {
	return vpy_getOutput(handle, index);
}
Beispiel #2
0
VS_API(VSNodeRef *) vsscript_getOutput(VSScript *handle, int index) {
    std::lock_guard<std::mutex> lock(vsscriptlock);
    return vpy_getOutput(handle, index);
}