author | Sam Lantinga |
Thu, 15 Sep 2016 08:29:20 -0700 | |
changeset 10347 | 221061d874e9 |
parent 9998 | f67cf37e9cd4 |
child 10604 | 27d0fb08d755 |
permissions | -rw-r--r-- |
icculus@8093 | 1 |
/* |
icculus@8093 | 2 |
Simple DirectMedia Layer |
slouken@9998 | 3 |
Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org> |
icculus@8093 | 4 |
|
icculus@8093 | 5 |
This software is provided 'as-is', without any express or implied |
icculus@8093 | 6 |
warranty. In no event will the authors be held liable for any damages |
icculus@8093 | 7 |
arising from the use of this software. |
icculus@8093 | 8 |
|
icculus@8093 | 9 |
Permission is granted to anyone to use this software for any purpose, |
icculus@8093 | 10 |
including commercial applications, and to alter it and redistribute it |
icculus@8093 | 11 |
freely, subject to the following restrictions: |
icculus@8093 | 12 |
|
icculus@8093 | 13 |
1. The origin of this software must not be misrepresented; you must not |
icculus@8093 | 14 |
claim that you wrote the original software. If you use this software |
icculus@8093 | 15 |
in a product, an acknowledgment in the product documentation would be |
icculus@8093 | 16 |
appreciated but is not required. |
icculus@8093 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
icculus@8093 | 18 |
misrepresented as being the original software. |
icculus@8093 | 19 |
3. This notice may not be removed or altered from any source distribution. |
icculus@8093 | 20 |
*/ |
icculus@8093 | 21 |
#ifndef _SDL_internal_h |
icculus@8093 | 22 |
#define _SDL_internal_h |
icculus@8093 | 23 |
|
icculus@8094 | 24 |
#include "dynapi/SDL_dynapi.h" |
icculus@8094 | 25 |
|
icculus@8094 | 26 |
#if SDL_DYNAMIC_API |
icculus@8094 | 27 |
#include "dynapi/SDL_dynapi_overrides.h" |
icculus@8094 | 28 |
/* force DECLSPEC and SDLCALL off...it's all internal symbols now. |
icculus@8094 | 29 |
These will have actual #defines during SDL_dynapi.c only */ |
icculus@8094 | 30 |
#define DECLSPEC |
icculus@8094 | 31 |
#define SDLCALL |
icculus@8094 | 32 |
#endif |
icculus@8094 | 33 |
|
icculus@8093 | 34 |
#include "SDL_config.h" |
icculus@8093 | 35 |
|
icculus@8093 | 36 |
#endif |
icculus@8093 | 37 |
|
icculus@8093 | 38 |
/* vi: set ts=4 sw=4 expandtab: */ |