Exemplo n.º 1
0
VS_API(const char *) vsscript_getError(VSScript *handle) {
    std::lock_guard<std::mutex> lock(vsscriptlock);
    if (handle)
        return vpy_getError(handle);
    else
        return "Invalid handle (NULL)";
}
Exemplo n.º 2
0
VS_API(const char *) vseval_getError(VSScript *handle) {
    return vpy_getError(handle);
}
Exemplo n.º 3
0
VS_API(const char *) vsscript_getError(VSScript *handle) {
    if (handle)
        return vpy_getError(handle);
    else
        return "Invalid handle (NULL)";
}