1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* -*- mode: c; tab-width: 4; c-basic-offset: 4; c-file-style: "linux" -*- */
- //
- // Copyright (c) 2009-2011, Wei Mingzhi <whistler_wmz@users.sf.net>.
- // Copyright (c) 2011-2017, SDLPAL development team.
- // All rights reserved.
- //
- // This file is part of SDLPAL.
- //
- // SDLPAL 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, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
- //
- // winrt/pal_config.h: Windows Runtime specific header.
- // @Author: Lou Yihua <louyihua@21cn.com>, 2017.
- //
- #pragma once
- #define PAL_PREFIX ""
- #define PAL_SAVE_PREFIX ""
- #define PAL_CONFIG_PREFIX UTIL_ConfigPath()
- #define PAL_HAS_TOUCH 1
- #define PAL_AUDIO_DEFAULT_BUFFER_SIZE 4096
- #define PAL_DEFAULT_WINDOW_WIDTH 320
- #define PAL_DEFAULT_WINDOW_HEIGHT 200
- #if SDL_VERSION_ATLEAST(2,0,0)
- # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN)
- #else
- # define PAL_VIDEO_INIT_FLAGS (SDL_HWSURFACE | SDL_RESIZABLE | (gConfig.fFullScreen ? SDL_FULLSCREEN : 0))
- #endif
- #define PAL_SDL_INIT_FLAGS (SDL_INIT_VIDEO | SDL_INIT_AUDIO)
- #define PAL_PLATFORM "Windows Runtime"
- #define PAL_CREDIT "(Unknown)"
- #define PAL_PORTYEAR "2015"
- #define PAL_HAS_CONFIG_PAGE 1
- #if NTDDI_VERSION >= NTDDI_WIN10
- # define PAL_HAS_NATIVEMIDI 1
- #endif
- #define PAL_FILESYSTEM_IGNORE_CASE 1
- #define PAL_PATH_SEPARATORS "\\/"
- #define PAL_IS_PATH_SEPARATOR(x) ((x) == '\\' || (x) == '/')
- #define strtok_r strtok_s
- #define strncasecmp _strnicmp
- #define strcasestr(a,b) strstr(_strupr((a)),_strupr((b)))
- PAL_C_LINKAGE_BEGIN
- LPCSTR
- UTIL_BasePath(
- VOID
- );
- LPCSTR
- UTIL_SavePath(
- VOID
- );
- LPCSTR
- UTIL_ConfigPath(
- VOID
- );
- LPCSTR
- UTIL_ScreenShotPath(
- VOID
- );
- BOOL
- UTIL_TouchEnabled(
- VOID
- );
- PAL_C_LINKAGE_END
|