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