| 335 | { |
| 336 | DownloadToFileThread(context); |
| 337 | } |
| 338 | |
| 339 | // Download to memory |
| 340 | static void DownloadToMemOverlapped(DownloadToMemContext* context) |
| 341 | { |
| 342 | DownloadToMemThread(context); |
| 343 | } |
| 344 | |
| 345 | #endif // MT_DOWNLOAD |
| 346 | |
| 347 | void CheckSquadObject::StartDownloadingXMLSource() |
| 348 | { |
| 349 | _state = DownloadingSquad; |
| 350 | _stateDone.Reset(); |
| 351 |
nothing calls this directly
no test coverage detected