author | Sam Lantinga |
Sat, 02 Jan 2016 10:10:34 -0800 | |
changeset 9998 | f67cf37e9cd4 |
parent 9619 | b94b6d0bff0f |
child 10737 | 3406a0f8b041 |
permissions | -rw-r--r-- |
dludwig@8356 | 1 |
/* |
dludwig@8356 | 2 |
Simple DirectMedia Layer |
slouken@9998 | 3 |
Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org> |
dludwig@8356 | 4 |
|
dludwig@8356 | 5 |
This software is provided 'as-is', without any express or implied |
dludwig@8356 | 6 |
warranty. In no event will the authors be held liable for any damages |
dludwig@8356 | 7 |
arising from the use of this software. |
dludwig@8356 | 8 |
|
dludwig@8356 | 9 |
Permission is granted to anyone to use this software for any purpose, |
dludwig@8356 | 10 |
including commercial applications, and to alter it and redistribute it |
dludwig@8356 | 11 |
freely, subject to the following restrictions: |
dludwig@8356 | 12 |
|
dludwig@8356 | 13 |
1. The origin of this software must not be misrepresented; you must not |
dludwig@8356 | 14 |
claim that you wrote the original software. If you use this software |
dludwig@8356 | 15 |
in a product, an acknowledgment in the product documentation would be |
dludwig@8356 | 16 |
appreciated but is not required. |
dludwig@8356 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
dludwig@8356 | 18 |
misrepresented as being the original software. |
dludwig@8356 | 19 |
3. This notice may not be removed or altered from any source distribution. |
dludwig@8356 | 20 |
*/ |
dludwig@8356 | 21 |
#include "SDL_config.h" |
dludwig@8356 | 22 |
|
dludwig@8356 | 23 |
/* For a thread handle, use a void pointer to a std::thread */ |
dludwig@8356 | 24 |
typedef void * SYS_ThreadHandle; |
dludwig@8356 | 25 |
|
dludwig@8356 | 26 |
/* vi: set ts=4 sw=4 expandtab: */ |