Fix #10490: Allow ships to exit depots if another is not moving at the exit point...
[openttd-github.git] / src / os / windows / win32.h
blob4e35241721716b031c28f8918f895d9bbe8aed73
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 */
8 /** @file win32.h declarations of functions for MS windows systems */
10 #ifndef WIN32_H
11 #define WIN32_H
13 bool MyShowCursor(bool show, bool toggle = false);
15 char *convert_from_fs(const wchar_t *name, char *utf8_buf, size_t buflen);
16 wchar_t *convert_to_fs(const std::string_view name, wchar_t *utf16_buf, size_t buflen);
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);
22 #endif /* WIN32_H */