lzham_threading.h 278 B

123456789101112
  1. // File: lzham_threading.h
  2. // See Copyright Notice and license at the end of include/lzham.h
  3. #if LZHAM_USE_WIN32_API
  4. #include "lzham_win32_threading.h"
  5. #elif LZHAM_USE_PTHREADS_API
  6. #include "lzham_pthreads_threading.h"
  7. #else
  8. #include "lzham_null_threading.h"
  9. #endif