]> git.sesse.net Git - x264/blobdiff - common/win32thread.h
aarch64: Remove commas LLVM's assembler complains about
[x264] / common / win32thread.h
index aa55e0fc126af40b8fea70e159b95d52182471fb..103df997ae9aaa62f69b44c302dd44b58ebbd69f 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * win32thread.h: windows threading
  *****************************************************************************
- * Copyright (C) 2010-2011 x264 project
+ * Copyright (C) 2010-2015 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
@@ -26,7 +26,6 @@
 #ifndef X264_WIN32THREAD_H
 #define X264_WIN32THREAD_H
 
-#define WIN32_LEAN_AND_MEAN
 #include <windows.h>
 /* the following macro is used within x264 */
 #undef ERROR
@@ -36,6 +35,7 @@ typedef struct
     void *handle;
     void *(*func)( void* arg );
     void *arg;
+    void **p_ret;
     void *ret;
 } x264_pthread_t;
 #define x264_pthread_attr_t int