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.
25 lines
418 B
25 lines
418 B
#pragma once |
|
|
|
#include <string_view> |
|
|
|
namespace devilution { |
|
|
|
#ifdef SCREEN_READER_INTEGRATION |
|
void InitializeScreenReader(); |
|
void ShutDownScreenReader(); |
|
void SpeakText(std::string_view text, bool force = false); |
|
#else |
|
constexpr void InitializeScreenReader() |
|
{ |
|
} |
|
|
|
constexpr void ShutDownScreenReader() |
|
{ |
|
} |
|
|
|
constexpr void SpeakText(std::string_view text, bool force = false) |
|
{ |
|
} |
|
#endif |
|
|
|
} // namespace devilution
|
|
|