Needed for Unix swprintf to convert %s to %ls in legacy language resources.
| 13 | |
| 14 | // Needed for Unix swprintf to convert %s to %ls in legacy language resources. |
| 15 | const wchar *StF(MSGID StringId) |
| 16 | { |
| 17 | static wchar FormattedStr[512]; |
| 18 | PrintfPrepareFmt(St(StringId),FormattedStr,ASIZE(FormattedStr)); |
| 19 | return FormattedStr; |
| 20 | } |
| 21 | #endif |
| 22 |
nothing calls this directly
no test coverage detected