| 196 | } |
| 197 | |
| 198 | static void CALLBACK StaticWinHttpCallback(HINTERNET, DWORD_PTR context, DWORD code, void *info, DWORD length) |
| 199 | { |
| 200 | if (context == 0) return; |
| 201 | |
| 202 | NetworkHTTPRequest *request = (NetworkHTTPRequest *)context; |
| 203 | request->WinHttpCallback(code, info, length); |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * Start the HTTP request handling. |
nothing calls this directly
no test coverage detected