author | Sam Lantinga |
Sat, 18 May 2013 14:17:52 -0700 | |
changeset 7191 | 75360622e65f |
parent 6885 | 700f1b25f77f |
permissions | -rw-r--r-- |
tim@5556 | 1 |
/* |
tim@5556 | 2 |
Simple DirectMedia Layer |
slouken@6885 | 3 |
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org> |
slouken@7191 | 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. |
slouken@7191 | 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: |
slouken@7191 | 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: */ |