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

This commit is contained in:
Brendan Shanks 2023-09-14 21:23:32 -07:00 committed by Alexandre Julliard
parent 39864e80e6
commit ca86155b1a

View file

@ -2572,6 +2572,8 @@ const unixlib_entry_t __wine_unix_call_funcs[] =
pulse_not_implemented,
};
C_ASSERT(ARRAYSIZE(__wine_unix_call_funcs) == funcs_count);
#ifdef _WIN64
typedef UINT PTR32;
@ -3041,4 +3043,6 @@ const unixlib_entry_t __wine_unix_call_wow64_funcs[] =
pulse_not_implemented,
};
C_ASSERT(ARRAYSIZE(__wine_unix_call_wow64_funcs) == funcs_count);
#endif /* _WIN64 */