author | David Ludwig |
Tue, 27 Aug 2013 11:39:44 -0400 | |
changeset 8494 | 5d165785918d |
parent 8483 | d403ded25942 |
child 8505 | a76a3842c9eb |
permissions | -rw-r--r-- |
dludwig@8327 | 1 |
/* |
dludwig@8327 | 2 |
Simple DirectMedia Layer |
dludwig@8327 | 3 |
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org> |
dludwig@8327 | 4 |
|
dludwig@8327 | 5 |
This software is provided 'as-is', without any express or implied |
dludwig@8327 | 6 |
warranty. In no event will the authors be held liable for any damages |
dludwig@8327 | 7 |
arising from the use of this software. |
dludwig@8327 | 8 |
|
dludwig@8327 | 9 |
Permission is granted to anyone to use this software for any purpose, |
dludwig@8327 | 10 |
including commercial applications, and to alter it and redistribute it |
dludwig@8327 | 11 |
freely, subject to the following restrictions: |
dludwig@8327 | 12 |
|
dludwig@8327 | 13 |
1. The origin of this software must not be misrepresented; you must not |
dludwig@8327 | 14 |
claim that you wrote the original software. If you use this software |
dludwig@8327 | 15 |
in a product, an acknowledgment in the product documentation would be |
dludwig@8327 | 16 |
appreciated but is not required. |
dludwig@8327 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
dludwig@8327 | 18 |
misrepresented as being the original software. |
dludwig@8327 | 19 |
3. This notice may not be removed or altered from any source distribution. |
dludwig@8327 | 20 |
*/ |
dludwig@8327 | 21 |
#include "SDL_config.h" |
dludwig@8327 | 22 |
|
dludwig@8327 | 23 |
#if SDL_VIDEO_DRIVER_WINRT |
dludwig@8327 | 24 |
|
dludwig@8494 | 25 |
/* SDL includes */ |
dludwig@8327 | 26 |
#include "SDL_winrtevents_c.h" |
dludwig@8483 | 27 |
#include "../../core/winrt/SDL_winrtapp.h" |
dludwig@8331 | 28 |
|
dludwig@8494 | 29 |
extern "C" { |
dludwig@8494 | 30 |
#include "../SDL_sysvideo.h" |
dludwig@8494 | 31 |
#include "../../events/SDL_events_c.h" |
dludwig@8494 | 32 |
} |
dludwig@8494 | 33 |
|
dludwig@8331 | 34 |
extern SDL_WinRTApp ^ SDL_WinRTGlobalApp; |
dludwig@8327 | 35 |
|
dludwig@8494 | 36 |
|
dludwig@8494 | 37 |
/* General event-management function(s) */ |
dludwig@8494 | 38 |
|
dludwig@8327 | 39 |
void |
dludwig@8327 | 40 |
WINRT_PumpEvents(_THIS) |
dludwig@8327 | 41 |
{ |
dludwig@8331 | 42 |
SDL_WinRTGlobalApp->PumpEvents(); |
dludwig@8327 | 43 |
} |
dludwig@8327 | 44 |
|
dludwig@8327 | 45 |
#endif /* SDL_VIDEO_DRIVER_WINRT */ |
dludwig@8327 | 46 |
|
dludwig@8327 | 47 |
/* vi: set ts=4 sw=4 expandtab: */ |