author | Ryan C. Gordon |
Fri, 09 Sep 2011 02:43:04 -0400 | |
changeset 5878 | bc68122afbed |
parent 5556 | 45a709ef443d |
child 6138 | 4c64952a58fb |
permissions | -rw-r--r-- |
tim@5556 | 1 |
/* |
tim@5556 | 2 |
Simple DirectMedia Layer |
tim@5556 | 3 |
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org> |
tim@5556 | 4 |
|
tim@5556 | 5 |
This software is provided 'as-is', without any express or implied |
tim@5556 | 6 |
warranty. In no event will the authors be held liable for any damages |
tim@5556 | 7 |
arising from the use of this software. |
tim@5556 | 8 |
|
tim@5556 | 9 |
Permission is granted to anyone to use this software for any purpose, |
tim@5556 | 10 |
including commercial applications, and to alter it and redistribute it |
tim@5556 | 11 |
freely, subject to the following restrictions: |
tim@5556 | 12 |
|
tim@5556 | 13 |
1. The origin of this software must not be misrepresented; you must not |
tim@5556 | 14 |
claim that you wrote the original software. If you use this software |
tim@5556 | 15 |
in a product, an acknowledgment in the product documentation would be |
tim@5556 | 16 |
appreciated but is not required. |
tim@5556 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
tim@5556 | 18 |
misrepresented as being the original software. |
tim@5556 | 19 |
3. This notice may not be removed or altered from any source distribution. |
tim@5556 | 20 |
*/ |
tim@5556 | 21 |
|
tim@5556 | 22 |
#ifndef _SDL_hints_c_h |
tim@5556 | 23 |
#define _SDL_hints_c_h |
tim@5556 | 24 |
|
tim@5556 | 25 |
/** |
tim@5556 | 26 |
* \brief A callback function that is optionally called when a hint changes |
tim@5556 | 27 |
*/ |
tim@5556 | 28 |
typedef void (*SDL_HintChangedCb)(const char *name, const char *oldValue, const char *newValue); |
tim@5556 | 29 |
|
tim@5556 | 30 |
extern SDL_bool SDL_RegisterHintChangedCb(const char *name, SDL_HintChangedCb hintCb); |
tim@5556 | 31 |
|
tim@5556 | 32 |
#endif /* _SDL_hints_c_h */ |
tim@5556 | 33 |
|
icculus@5878 | 34 |
/* vi: set ts=4 sw=4 expandtab: */ |