comparison src/thread/SDL_thread_c.h @ 1895:c121d94672cb

SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 10 Jul 2006 21:04:37 +0000
parents d910939febfa
children c9aa6bcb26f3
comparison
equal deleted inserted replaced
1894:c69cee13dd76 1895:c121d94672cb
50 #include "generic/SDL_systhread_c.h" 50 #include "generic/SDL_systhread_c.h"
51 #endif 51 #endif
52 #include "../SDL_error_c.h" 52 #include "../SDL_error_c.h"
53 53
54 /* This is the system-independent thread info structure */ 54 /* This is the system-independent thread info structure */
55 struct SDL_Thread { 55 struct SDL_Thread
56 Uint32 threadid; 56 {
57 SYS_ThreadHandle handle; 57 Uint32 threadid;
58 int status; 58 SYS_ThreadHandle handle;
59 SDL_error errbuf; 59 int status;
60 void *data; 60 SDL_error errbuf;
61 void *data;
61 }; 62 };
62 63
63 /* This is the function called to run a thread */ 64 /* This is the function called to run a thread */
64 extern void SDL_RunThread(void *data); 65 extern void SDL_RunThread(void *data);
65 66
66 #endif /* _SDL_thread_c_h */ 67 #endif /* _SDL_thread_c_h */
68 /* vi: set ts=4 sw=4 expandtab: */