Guest User

Untitled

a guest
Jun 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #ifndef FP_H
  2. #define FP_H
  3. #include "Types.h"
  4. typedef uint32_t FP_ThreadId_t;
  5. typedef void * (FP_ThreadFunc_t) (void *);
  6.  
  7. FP_ThreadId_t FP_ThreadCreate (FP_ThreadFunc_t *threadFuncPtr, void * threadData);
  8.  
  9. void * FP_ThreadJoin (FP_ThreadId_t threadId);
  10.  
  11. #endif /* FP_H */
Add Comment
Please, Sign In to add comment