LunaHook-mirror/LunaHook/engine64/livecaptions.h
2024-05-19 16:32:44 +08:00

17 lines
343 B
C++

class livecaptions : public ENGINE
{
public:
livecaptions()
{
check_by = CHECK_BY::CUSTOM;
check_by_target = []()
{
return GetModuleHandle(L"vcruntime140_app.dll")&&GetModuleHandle(L"Microsoft.CognitiveServices.Speech.extension.embedded.sr.dll");
};
};
bool attach_function();
};