| 118 | const Settings &get_settings() { return *settings; } |
| 119 | |
| 120 | std::wstring get_default_hunspell_path() { |
| 121 | std::wstring path = ini_file_path; |
| 122 | return path.substr(0, path.rfind(L'\\')) + L"\\Hunspell"; |
| 123 | } |
| 124 | |
| 125 | void set_hmodule(HANDLE h_module_arg) { |
| 126 | h_module = h_module_arg; |
no test coverage detected