You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
399 B
26 lines
399 B
|
3 years ago
|
#pragma once
|
||
|
|
|
||
|
|
#include <string_view>
|
||
|
|
|
||
|
|
namespace devilution {
|
||
|
|
|
||
|
|
#ifdef SCREEN_READER_INTEGRATION
|
||
|
|
void InitializeScreenReader();
|
||
|
|
void ShutDownScreenReader();
|
||
|
|
void SpeakText(std::string_view text);
|
||
|
|
#else
|
||
|
|
constexpr void InitializeScreenReader()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
constexpr void ShutDownScreenReader()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
constexpr void SpeakText(std::string_view text)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
} // namespace devilution
|