| 19 | static CURLSH *s_share = NULL; |
| 20 | |
| 21 | int32_t ytutils::Log::GetNext(char *data) |
| 22 | { |
| 23 | int32_t ret; |
| 24 | char *sptr; |
| 25 | char val[2]; |
| 26 | |
| 27 | ret = m_ini->parse(data, val, sizeof(val)); |
| 28 | |
| 29 | if (ret == SCE_OK) |
| 30 | { |
| 31 | // Restore '=' |
| 32 | sptr = sce_paf_strchr(data, '}'); |
| 33 | while (sptr) { |
| 34 | *sptr = '='; |
| 35 | sptr = sce_paf_strchr(sptr, '}'); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | return ret; |
| 40 | } |
| 41 | |
| 42 | int32_t ytutils::Log::Get(const char *data) |
| 43 | { |
nothing calls this directly
no outgoing calls
no test coverage detected