2 Mar
2026
2 Mar
'26
1:13 p.m.
Jacek Caban (@jacek) commented about dlls/wininet/http.c:
FreeLibraryAndExitThread(WININET_hModule, 0); }
+static void send_callback(http_request_t *req, DWORD_PTR dwContext, DWORD dwInternetStatus, LPVOID lpvStatusInfo, + DWORD dwStatusInfoLength) +{ + INTERNET_SendCallback(&req->hdr, dwContext, dwInternetStatus, lpvStatusInfo, dwStatusInfoLength); +}
A dedicated function just to slightly simplify the first argument doesn't seem needed. Are you planning to add more code here? If it's about a better function name, we could rename `INTERNET_SendCallback` instead. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10223#note_130984