OpenTTD Source  20240919-master-gdf0233f4c2
win32.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef WIN32_H
11 #define WIN32_H
12 
13 bool MyShowCursor(bool show, bool toggle = false);
14 
15 char *convert_from_fs(const std::wstring_view src, std::span<char> dst_buf);
16 wchar_t *convert_to_fs(const std::string_view src, std::span<wchar_t> dst_buf);
17 
18 void Win32SetCurrentLocaleName(const char *iso_code);
19 int OTTDStringCompare(std::string_view s1, std::string_view s2);
20 int Win32StringContains(const std::string_view str, const std::string_view value, bool case_insensitive);
21 
22 #endif /* WIN32_H */
convert_from_fs
char * convert_from_fs(const std::wstring_view src, std::span< char > dst_buf)
Convert to OpenTTD's encoding from that of the environment in UNICODE.
Definition: win32.cpp:372
convert_to_fs
wchar_t * convert_to_fs(const std::string_view src, std::span< wchar_t > dst_buf)
Convert from OpenTTD's encoding to that of the environment in UNICODE.
Definition: win32.cpp:389
Win32StringContains
int Win32StringContains(const std::string_view str, const std::string_view value, bool case_insensitive)
Search if a string is contained in another string using the current locale.
Definition: win32.cpp:485