author | Sam Lantinga |
Tue, 26 May 2015 06:27:46 -0700 | |
changeset 9619 | b94b6d0bff0f |
parent 9278 | 8900afb78a19 |
child 9998 | f67cf37e9cd4 |
permissions | -rw-r--r-- |
icculus@9278 | 1 |
/* |
icculus@9278 | 2 |
Simple DirectMedia Layer |
slouken@9619 | 3 |
Copyright (C) 1997-2015 Sam Lantinga <slouken@libsdl.org> |
icculus@9278 | 4 |
|
icculus@9278 | 5 |
This software is provided 'as-is', without any express or implied |
icculus@9278 | 6 |
warranty. In no event will the authors be held liable for any damages |
icculus@9278 | 7 |
arising from the use of this software. |
icculus@9278 | 8 |
|
icculus@9278 | 9 |
Permission is granted to anyone to use this software for any purpose, |
icculus@9278 | 10 |
including commercial applications, and to alter it and redistribute it |
icculus@9278 | 11 |
freely, subject to the following restrictions: |
icculus@9278 | 12 |
|
icculus@9278 | 13 |
1. The origin of this software must not be misrepresented; you must not |
icculus@9278 | 14 |
claim that you wrote the original software. If you use this software |
icculus@9278 | 15 |
in a product, an acknowledgment in the product documentation would be |
icculus@9278 | 16 |
appreciated but is not required. |
icculus@9278 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
icculus@9278 | 18 |
misrepresented as being the original software. |
icculus@9278 | 19 |
3. This notice may not be removed or altered from any source distribution. |
icculus@9278 | 20 |
*/ |
icculus@9278 | 21 |
|
icculus@9278 | 22 |
|
icculus@9278 | 23 |
#ifndef _SDL_emscriptenevents_h |
icculus@9278 | 24 |
#define _SDL_emscriptenevents_h |
icculus@9278 | 25 |
|
icculus@9278 | 26 |
#include "SDL_emscriptenvideo.h" |
icculus@9278 | 27 |
|
icculus@9278 | 28 |
extern void |
icculus@9278 | 29 |
Emscripten_RegisterEventHandlers(SDL_WindowData *data); |
icculus@9278 | 30 |
|
icculus@9278 | 31 |
extern void |
icculus@9278 | 32 |
Emscripten_UnregisterEventHandlers(SDL_WindowData *data); |
icculus@9278 | 33 |
#endif /* _SDL_emscriptenevents_h */ |
icculus@9278 | 34 |
|
icculus@9278 | 35 |
/* vi: set ts=4 sw=4 expandtab: */ |
icculus@9278 | 36 |