f501e4f665
- `LIBC_FILEIO_ENABLED` wasn't defined anywhere, even in _other platforms_. - `NO_NETWORK` is also never defined. It probably isn't enough anyway to disable network APIs in the current codebase. - `UNIX_SOCKET_UNAVAILABLE` is never defined in this code but used by some other platforms, clarify that. - `NO_STATVFS` can be removed as Android supports it since API level 19, which is our current min SDK level. It's also only used for `DirAccessUnix::get_space_left()` which is anyway overridden by `DirAccessJAndroid::get_space_left()` so it shouldn't make a difference. * Fixed documentation for `DirAccess.get_space_left()`. - `NO_FCNTL` is likely also a remnant of early Android days, in current NDK r23 it seems to be available. Also cleaned up unused `fcntl.h` includes. - `NO_ALLOCA` is never defined, and we use alloca in many places now. |
||
---|---|---|
.. | ||
export | ||
app_uwp.cpp | ||
app_uwp.h | ||
context_egl_uwp.cpp | ||
context_egl_uwp.h | ||
detect.py | ||
joypad_uwp.cpp | ||
joypad_uwp.h | ||
logo.png | ||
os_uwp.cpp | ||
os_uwp.h | ||
platform_config.h | ||
README.md | ||
SCsub |
UWP platform port
Warning
The UWP platform port is not currently in a working state for the
master
branch, and may be dropped in the future.
This folder contains the C++ code for the Universal Windows Platform (UWP)
platform port. This is not to be confused with the "standard" Win32 port,
which is available in platform/windows
.
See also misc/dist/uwp_template
folder for the UWP
project template used for packaging the UWP export templates.
Documentation
- Compiling for Universal Windows Platform
- Instructions on building this platform port from source.
- Exporting for Universal Windows Platform
- Instructions on using the compiled export templates to export a project.