| 333 | } |
| 334 | |
| 335 | static AVSValue __cdecl FFSetLogLevel(AVSValue Args, void* UserData, IScriptEnvironment* Env) { |
| 336 | FFMS_SetLogLevel(Args[0].AsInt()); |
| 337 | return FFMS_GetLogLevel(); |
| 338 | } |
| 339 | |
| 340 | static AVSValue __cdecl FFGetVersion(AVSValue Args, void* UserData, IScriptEnvironment* Env) { |
| 341 | int Version = FFMS_GetVersion(); |
nothing calls this directly
no test coverage detected