add launcher info for most plugins, add launcher build date for plugins

(DivaMovie excluded to avoid conflicts when merging changes to that later)
This commit is contained in:
somewhatlurker
2019-10-06 15:51:09 +11:00
parent 32f6a4db26
commit 9a8fc1147d
10 changed files with 71 additions and 8 deletions
@@ -165,4 +165,12 @@ namespace PluginConfig
PluginConfigOption* options;
};
#pragma pack(pop)
// note: this is actually the build date of PluginConfigApi -- make sure this isn't cached for CI
extern "C" __declspec(dllexport) LPCWSTR GetBuildDate(void)
{
WCHAR utf16buf[128];
MultiByteToWideChar(CP_UTF8, 0, __DATE__, -1, utf16buf, 128);
return _wcsdup(utf16buf);
}
}