SDL standard library

Dependents:   H261_encoder

Committer:
miruga27
Date:
Wed Sep 07 18:46:53 2016 +0000
Revision:
0:dda4f4550403
7/09/2016;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
miruga27 0:dda4f4550403 1 /*
miruga27 0:dda4f4550403 2 Simple DirectMedia Layer
miruga27 0:dda4f4550403 3 Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
miruga27 0:dda4f4550403 4
miruga27 0:dda4f4550403 5 This software is provided 'as-is', without any express or implied
miruga27 0:dda4f4550403 6 warranty. In no event will the authors be held liable for any damages
miruga27 0:dda4f4550403 7 arising from the use of this software.
miruga27 0:dda4f4550403 8
miruga27 0:dda4f4550403 9 Permission is granted to anyone to use this software for any purpose,
miruga27 0:dda4f4550403 10 including commercial applications, and to alter it and redistribute it
miruga27 0:dda4f4550403 11 freely, subject to the following restrictions:
miruga27 0:dda4f4550403 12
miruga27 0:dda4f4550403 13 1. The origin of this software must not be misrepresented; you must not
miruga27 0:dda4f4550403 14 claim that you wrote the original software. If you use this software
miruga27 0:dda4f4550403 15 in a product, an acknowledgment in the product documentation would be
miruga27 0:dda4f4550403 16 appreciated but is not required.
miruga27 0:dda4f4550403 17 2. Altered source versions must be plainly marked as such, and must not be
miruga27 0:dda4f4550403 18 misrepresented as being the original software.
miruga27 0:dda4f4550403 19 3. This notice may not be removed or altered from any source distribution.
miruga27 0:dda4f4550403 20 */
miruga27 0:dda4f4550403 21
miruga27 0:dda4f4550403 22 /**
miruga27 0:dda4f4550403 23 * \file close_code.h
miruga27 0:dda4f4550403 24 *
miruga27 0:dda4f4550403 25 * This file reverses the effects of begin_code.h and should be included
miruga27 0:dda4f4550403 26 * after you finish any function and structure declarations in your headers
miruga27 0:dda4f4550403 27 */
miruga27 0:dda4f4550403 28
miruga27 0:dda4f4550403 29 #undef _begin_code_h
miruga27 0:dda4f4550403 30
miruga27 0:dda4f4550403 31 /* Reset structure packing at previous byte alignment */
miruga27 0:dda4f4550403 32 #if defined(_MSC_VER) || defined(__MWERKS__) || defined(__WATCOMC__) || defined(__BORLANDC__)
miruga27 0:dda4f4550403 33 #ifdef __BORLANDC__
miruga27 0:dda4f4550403 34 #pragma nopackwarning
miruga27 0:dda4f4550403 35 #endif
miruga27 0:dda4f4550403 36 #pragma pack(pop)
miruga27 0:dda4f4550403 37 #endif /* Compiler needs structure packing set */