author | Sam Lantinga |
Sun, 24 Jan 2010 21:10:53 +0000 | |
changeset 3697 | f7b03b6838cb |
parent 3407 | d3baf5ac4e37 |
child 5262 | b530ef003506 |
permissions | -rw-r--r-- |
slouken@0 | 1 |
/* |
slouken@0 | 2 |
SDL - Simple DirectMedia Layer |
slouken@3697 | 3 |
Copyright (C) 1997-2010 Sam Lantinga |
slouken@0 | 4 |
|
slouken@0 | 5 |
This library is free software; you can redistribute it and/or |
slouken@3697 | 6 |
modify it under the terms of the GNU Lesser General Public |
slouken@0 | 7 |
License as published by the Free Software Foundation; either |
slouken@3697 | 8 |
version 2.1 of the License, or (at your option) any later version. |
slouken@0 | 9 |
|
slouken@0 | 10 |
This library is distributed in the hope that it will be useful, |
slouken@0 | 11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
slouken@0 | 12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
slouken@3697 | 13 |
Lesser General Public License for more details. |
slouken@0 | 14 |
|
slouken@3697 | 15 |
You should have received a copy of the GNU Lesser General Public |
slouken@3697 | 16 |
License along with this library; if not, write to the Free Software |
slouken@3697 | 17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
slouken@0 | 18 |
|
slouken@0 | 19 |
Sam Lantinga |
slouken@251 | 20 |
slouken@libsdl.org |
slouken@0 | 21 |
*/ |
slouken@0 | 22 |
|
slouken@3407 | 23 |
/** |
slouken@3407 | 24 |
* \file close_code.h |
slouken@3407 | 25 |
* |
slouken@3407 | 26 |
* This file reverses the effects of begin_code.h and should be included |
slouken@3407 | 27 |
* after you finish any function and structure declarations in your headers |
slouken@3407 | 28 |
*/ |
slouken@0 | 29 |
|
slouken@0 | 30 |
#undef _begin_code_h |
slouken@0 | 31 |
|
slouken@0 | 32 |
/* Reset structure packing at previous byte alignment */ |
slouken@0 | 33 |
#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__WATCOMC__) || defined(__BORLANDC__) |
slouken@0 | 34 |
#ifdef __BORLANDC__ |
slouken@0 | 35 |
#pragma nopackwarning |
slouken@0 | 36 |
#endif |
slouken@0 | 37 |
#pragma pack(pop) |
slouken@0 | 38 |
#endif /* Compiler needs structure packing set */ |