1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/src/SDL_hints_c.h Wed Jun 15 10:28:01 2011 +0100
1.3 @@ -0,0 +1,34 @@
1.4 +/*
1.5 + Simple DirectMedia Layer
1.6 + Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
1.7 +
1.8 + This software is provided 'as-is', without any express or implied
1.9 + warranty. In no event will the authors be held liable for any damages
1.10 + arising from the use of this software.
1.11 +
1.12 + Permission is granted to anyone to use this software for any purpose,
1.13 + including commercial applications, and to alter it and redistribute it
1.14 + freely, subject to the following restrictions:
1.15 +
1.16 + 1. The origin of this software must not be misrepresented; you must not
1.17 + claim that you wrote the original software. If you use this software
1.18 + in a product, an acknowledgment in the product documentation would be
1.19 + appreciated but is not required.
1.20 + 2. Altered source versions must be plainly marked as such, and must not be
1.21 + misrepresented as being the original software.
1.22 + 3. This notice may not be removed or altered from any source distribution.
1.23 + */
1.24 +
1.25 +#ifndef _SDL_hints_c_h
1.26 +#define _SDL_hints_c_h
1.27 +
1.28 +/**
1.29 + * \brief A callback function that is optionally called when a hint changes
1.30 + */
1.31 +typedef void (*SDL_HintChangedCb)(const char *name, const char *oldValue, const char *newValue);
1.32 +
1.33 +extern SDL_bool SDL_RegisterHintChangedCb(const char *name, SDL_HintChangedCb hintCb);
1.34 +
1.35 +#endif /* _SDL_hints_c_h */
1.36 +
1.37 +/* vi: set ts=4 sw=4 expandtab: */
1.38 \ No newline at end of file