mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 13:55:36 +08:00
17 lines
345 B
C++
17 lines
345 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();
|
|
};
|