| 491 | #endif |
| 492 | |
| 493 | static char *custom_table(char *buffer, char *table_xml) |
| 494 | { |
| 495 | #ifndef ENGLISH_ONLY |
| 496 | char *STR_CUSTOMXML = buffer; |
| 497 | language("STR_CUSTOMXML", STR_CUSTOMXML, "XML"); |
| 498 | #else |
| 499 | const char *STR_CUSTOMXML = "XML"; |
| 500 | #endif |
| 501 | |
| 502 | sprintf(table_xml, "<T key=\"wm_custom\">" |
| 503 | XML_PAIR("icon_rsc","item_tex_ps3util") |
| 504 | XML_PAIR("title","%s") "</T>", |
| 505 | STR_CUSTOMXML); |
| 506 | return table_xml; |
| 507 | } |
| 508 | |
| 509 | static bool add_custom_xml(char *query_xmb) |
| 510 | { |
no test coverage detected