thread.c
changeset 2290 bdbb059ddba7
parent 2287 3e541bce2410
child 4298 b926a6eaaa70
equal deleted inserted replaced
2289:272e091eb99f 2290:bdbb059ddba7
     4 #include "thread.h"
     4 #include "thread.h"
     5 #include <stdlib.h>
     5 #include <stdlib.h>
     6 
     6 
     7 #if defined(__AMIGA__) || defined(__MORPHOS__)
     7 #if defined(__AMIGA__) || defined(__MORPHOS__)
     8 Thread* OTTDCreateThread(ThreadFunc function, void* arg) { return NULL; }
     8 Thread* OTTDCreateThread(ThreadFunc function, void* arg) { return NULL; }
     9 void* OTTDJoinThread(Thread*) { return NULL; }
     9 void* OTTDJoinThread(Thread* t) { return NULL; }
    10 
    10 
    11 
    11 
    12 #elif defined(__OS2__)
    12 #elif defined(__OS2__)
    13 
    13 
    14 #define INCL_DOS
    14 #define INCL_DOS