LunaHook-mirror/LunaHook/engine64/livecaptions.h

17 lines
345 B
C
Raw Normal View History

2024-05-19 16:32:44 +08:00
class livecaptions : public ENGINE
{
public:
livecaptions()
{
check_by = CHECK_BY::CUSTOM;
check_by_target = []()
{
2024-10-03 14:53:59 +08:00
return GetModuleHandle(L"vcruntime140_app.dll") && GetModuleHandle(L"Microsoft.CognitiveServices.Speech.extension.embedded.sr.dll");
2024-05-19 16:32:44 +08:00
};
};
bool attach_function();
};