author | David Ludwig |
Wed, 28 Aug 2013 16:51:07 -0400 | |
changeset 8512 | 5b345a756965 |
child 8515 | bc6cf9201dab |
permissions | -rw-r--r-- |
dludwig@8512 | 1 |
/* |
dludwig@8512 | 2 |
Simple DirectMedia Layer |
dludwig@8512 | 3 |
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org> |
dludwig@8512 | 4 |
|
dludwig@8512 | 5 |
This software is provided 'as-is', without any express or implied |
dludwig@8512 | 6 |
warranty. In no event will the authors be held liable for any damages |
dludwig@8512 | 7 |
arising from the use of this software. |
dludwig@8512 | 8 |
|
dludwig@8512 | 9 |
Permission is granted to anyone to use this software for any purpose, |
dludwig@8512 | 10 |
including commercial applications, and to alter it and redistribute it |
dludwig@8512 | 11 |
freely, subject to the following restrictions: |
dludwig@8512 | 12 |
|
dludwig@8512 | 13 |
1. The origin of this software must not be misrepresented; you must not |
dludwig@8512 | 14 |
claim that you wrote the original software. If you use this software |
dludwig@8512 | 15 |
in a product, an acknowledgment in the product documentation would be |
dludwig@8512 | 16 |
appreciated but is not required. |
dludwig@8512 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
dludwig@8512 | 18 |
misrepresented as being the original software. |
dludwig@8512 | 19 |
3. This notice may not be removed or altered from any source distribution. |
dludwig@8512 | 20 |
*/ |
dludwig@8512 | 21 |
|
dludwig@8512 | 22 |
/* Windows includes: */ |
dludwig@8512 | 23 |
#include <windows.h> |
dludwig@8512 | 24 |
#ifdef __cplusplus_winrt |
dludwig@8512 | 25 |
#include <agile.h> |
dludwig@8512 | 26 |
#endif |
dludwig@8512 | 27 |
|
dludwig@8512 | 28 |
/* SDL includes: */ |
dludwig@8512 | 29 |
#include "SDL_events.h" |
dludwig@8512 | 30 |
|
dludwig@8512 | 31 |
|
dludwig@8512 | 32 |
#ifdef __cplusplus_winrt |
dludwig@8512 | 33 |
|
dludwig@8512 | 34 |
/* Internal window data */ |
dludwig@8512 | 35 |
struct SDL_WindowData |
dludwig@8512 | 36 |
{ |
dludwig@8512 | 37 |
SDL_Window *sdlWindow; |
dludwig@8512 | 38 |
Platform::Agile<Windows::UI::Core::CoreWindow> coreWindow; |
dludwig@8512 | 39 |
}; |
dludwig@8512 | 40 |
|
dludwig@8512 | 41 |
#endif // ifdef __cplusplus_winrt |