Commit 69db0d60 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Win32: attempt to fix VLC_STATIC_MUTEX in C++ code

parent a7779d59
...@@ -122,10 +122,10 @@ typedef struct ...@@ -122,10 +122,10 @@ typedef struct
typedef struct typedef struct
{ {
CRITICAL_SECTION mutex;
LONG initialized; LONG initialized;
CRITICAL_SECTION mutex;
} vlc_mutex_t; } vlc_mutex_t;
#define VLC_STATIC_MUTEX { .initialized = 0, } #define VLC_STATIC_MUTEX { 0, }
typedef HANDLE vlc_cond_t; typedef HANDLE vlc_cond_t;
typedef DWORD vlc_threadvar_t; typedef DWORD vlc_threadvar_t;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment