Files
@ r21037:25a2ae9a83c2
Branch filter:
Location: cpp/openttd-patchpack/source/src/os/windows/win32.h - annotation
r21037:25a2ae9a83c2
1.6 KiB
text/x-c
(svn r26117) -Cleanup: unneeded NULL check
r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r18395:22ade7a0b9e1 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r20635:b175844dd019 r20636:0e1c43aac8f4 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r20638:30167929fcb9 r20638:30167929fcb9 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 r12836:aa53aa9303d2 | /* $Id$ */
/*
* This file is part of OpenTTD.
* 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.
* 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.
* 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/>.
*/
/** @file win32.h declarations of functions for MS windows systems */
#ifndef WIN32_H
#define WIN32_H
#include <windows.h>
bool MyShowCursor(bool show, bool toggle = false);
typedef void (*Function)(int);
bool LoadLibraryList(Function proc[], const char *dll);
char *convert_from_fs(const TCHAR *name, char *utf8_buf, size_t buflen);
TCHAR *convert_to_fs(const char *name, TCHAR *utf16_buf, size_t buflen, bool console_cp = false);
/* Function shortcuts for UTF-8 <> UNICODE conversion. When unicode is not
* defined these macros return the string passed to them, with UNICODE
* they return a pointer to the converted string. These functions use an
* internal buffer of max 512 characters. */
#if defined(UNICODE)
# define MB_TO_WIDE(str) OTTD2FS(str)
# define WIDE_TO_MB(str) FS2OTTD(str)
#else
# define MB_TO_WIDE(str) (str)
# define WIDE_TO_MB(str) (str)
#endif
HRESULT OTTDSHGetFolderPath(HWND, int, HANDLE, DWORD, LPTSTR);
#if defined(__MINGW32__)
#define SHGFP_TYPE_CURRENT 0
#endif /* __MINGW32__ */
#endif /* WIN32_H */
|