winecoreaudio: Ensure unixlib function tables and enum stay in sync.
This commit is contained in:
parent
63c0f01c96
commit
111e0cbd22
1 changed files with 6 additions and 2 deletions
|
@ -1796,7 +1796,7 @@ static NTSTATUS unix_set_event_handle(void *args)
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
unixlib_entry_t __wine_unix_call_funcs[] =
|
||||
const unixlib_entry_t __wine_unix_call_funcs[] =
|
||||
{
|
||||
unix_process_attach,
|
||||
unix_not_implemented,
|
||||
|
@ -1834,6 +1834,8 @@ unixlib_entry_t __wine_unix_call_funcs[] =
|
|||
unix_not_implemented,
|
||||
};
|
||||
|
||||
C_ASSERT(ARRAYSIZE(__wine_unix_call_funcs) == funcs_count);
|
||||
|
||||
#ifdef _WIN64
|
||||
|
||||
typedef UINT PTR32;
|
||||
|
@ -2249,7 +2251,7 @@ static NTSTATUS unix_wow64_get_prop_value(void *args)
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
unixlib_entry_t __wine_unix_call_wow64_funcs[] =
|
||||
const unixlib_entry_t __wine_unix_call_wow64_funcs[] =
|
||||
{
|
||||
unix_process_attach,
|
||||
unix_not_implemented,
|
||||
|
@ -2287,4 +2289,6 @@ unixlib_entry_t __wine_unix_call_wow64_funcs[] =
|
|||
unix_not_implemented,
|
||||
};
|
||||
|
||||
C_ASSERT(ARRAYSIZE(__wine_unix_call_wow64_funcs) == funcs_count);
|
||||
|
||||
#endif /* _WIN64 */
|
||||
|
|
Loading…
Add table
Reference in a new issue