Implement missing WinRT functions

- Fix buildsystem for WinRT/UWP platform.
- Add audio driver and joystick mapping for WinRT.
- Enable thread class for WinRT.
- Refactor MSVC compiler architecture detection to methods.py, so it can
  be used by Windows and WinRT.
This commit is contained in:
George Marques
2016-09-03 19:25:43 -03:00
parent 2f0e2a78b5
commit e21702f764
16 changed files with 1563 additions and 316 deletions

View File

@@ -59,7 +59,9 @@ Thread::ID ThreadWinrt::get_ID() const {
};
void ThreadWinrt::make_default() {
create_func = create_func_winrt;
get_thread_ID_func = get_thread_ID_func_winrt;
wait_to_finish_func = wait_to_finish_func_winrt;
};
ThreadWinrt::ThreadWinrt() {