1 Feb
2023
1 Feb
'23
9:25 p.m.
Rémi Bernon (@rbernon) commented about dlls/winegstreamer/main.c:
return params.result; }
+bool wg_transform_get_status(struct wg_transform *transform, bool *accepts_input) +{ + struct wg_transform_get_status_params params = + { + .transform = transform, + .accepts_input = accepts_input, + }; + + return !WINE_UNIX_CALL(unix_wg_transform_get_status, ¶ms);
I think this could just return `params.accept_input` as a bool, that the unix side would have written to, removing the need for the pointer and validity check. Also could you add a trace like other entry points? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2080#note_22643