blob: 65c53489b00ee4e513caaf901d85819c7d5e90af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include "wm.h"
const char* ffDetectWMPlugin(FF_A_UNUSED FFstrbuf* pluginName) {
return "Not supported on this platform";
}
const char* ffDetectWMVersion(FF_A_UNUSED const FFstrbuf* wmName, FF_A_UNUSED FFstrbuf* result, FF_A_UNUSED FFWMOptions* options) {
return "Not supported on this platform";
}
|