(svn r2810) Threads may now return information when they terminate using a void*.

Also add the new files to the MSVC project files.
This commit is contained in:
tron
2005-08-05 11:53:48 +00:00
parent 4696ef802a
commit c78af95d1d
5 changed files with 64 additions and 17 deletions

View File

@@ -11,9 +11,9 @@
typedef struct Thread Thread;
typedef void (*ThreadFunc)(void*);
typedef void* (*ThreadFunc)(void*);
Thread* OTTDCreateThread(ThreadFunc, void*);
void OTTDJoinThread(Thread*);
void* OTTDJoinThread(Thread*);
#endif