Commit 40051cfa authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

winegstreamer: Ensure unixlib function tables and enum stay in sync.

parent 2fd33f6c
......@@ -414,6 +414,8 @@ enum unix_funcs
unix_wg_muxer_create,
unix_wg_muxer_destroy,
unix_wg_funcs_count,
};
#endif /* __WINE_WINEGSTREAMER_UNIXLIB_H */
......@@ -1950,6 +1950,8 @@ const unixlib_entry_t __wine_unix_call_funcs[] =
X(wg_muxer_destroy),
};
C_ASSERT(ARRAYSIZE(__wine_unix_call_funcs) == unix_wg_funcs_count);
#ifdef _WIN64
typedef ULONG PTR32;
......@@ -2217,4 +2219,6 @@ const unixlib_entry_t __wine_unix_call_wow64_funcs[] =
X(wg_muxer_destroy),
};
C_ASSERT(ARRAYSIZE(__wine_unix_call_wow64_funcs) == unix_wg_funcs_count);
#endif /* _WIN64 */
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