| 629 | |
| 630 | static void FetchFlagsTask_DownloadNext(void); |
| 631 | static void FetchFlagsTask_Handle(cc_uint8* data, cc_uint32 len) { |
| 632 | struct Flag* flag = &flags[FetchFlagsTask.count]; |
| 633 | LBackend_DecodeFlag(flag, data, len); |
| 634 | |
| 635 | FetchFlagsTask.count++; |
| 636 | FetchFlagsTask_DownloadNext(); |
| 637 | } |
| 638 | |
| 639 | static void FetchFlagsTask_DownloadNext(void) { |
| 640 | cc_string url; char urlBuffer[URL_MAX_SIZE]; |
nothing calls this directly
no test coverage detected