Mercurial > sdl-ios-xcode
comparison include/SDL_thread.h @ 5131:2c500f37abcf
merged: might need to check main.c in the iOS template to make sure no changes were abandoned.
author | Eric Wing <ewing . public |-at-| gmail . com> |
---|---|
date | Tue, 01 Feb 2011 00:37:02 -0800 |
parents | c2539ff054c8 |
children | b530ef003506 |
comparison
equal
deleted
inserted
replaced
5078:067973aec4d8 | 5131:2c500f37abcf |
---|---|
53 /* The function passed to SDL_CreateThread() | 53 /* The function passed to SDL_CreateThread() |
54 It is passed a void* user context parameter and returns an int. | 54 It is passed a void* user context parameter and returns an int. |
55 */ | 55 */ |
56 typedef int (SDLCALL * SDL_ThreadFunction) (void *data); | 56 typedef int (SDLCALL * SDL_ThreadFunction) (void *data); |
57 | 57 |
58 #if defined(__WINDOWS__) && !defined(HAVE_LIBC) | 58 #if defined(__WIN32__) && !defined(HAVE_LIBC) |
59 /** | 59 /** |
60 * \file SDL_thread.h | 60 * \file SDL_thread.h |
61 * | 61 * |
62 * We compile SDL into a DLL. This means, that it's the DLL which | 62 * We compile SDL into a DLL. This means, that it's the DLL which |
63 * creates a new thread for the calling process with the SDL_CreateThread() | 63 * creates a new thread for the calling process with the SDL_CreateThread() |