24 Jul
2023
24 Jul
'23
12:39 p.m.
Huw Davies (@huw) commented about dlls/mmdevapi/client.c:
static HANDLE main_loop_thread;
+static inline void wine_unix_call(const unsigned int code, void *args) +{ + const NTSTATUS status = __wine_unix_call(drvs.module_unixlib, code, args); + assert(!status); +} +
Could you add a commit before this one that introduces this helper (initially it would just call `WINE_UNIX_CALL()`? This would reduce the size of this commit. Also, could you add it to a header, so it doesn't need to be duplicated? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3380#note_39931