| 16 | static bool s_messagesLoaded = false; |
| 17 | |
| 18 | const char* getMessage(TFE_Message msg) |
| 19 | { |
| 20 | if (msg < TFE_MSG_SAVE || msg >= TFE_MSG_COUNT) { return nullptr; } |
| 21 | return s_tfeMessage[msg]; |
| 22 | } |
| 23 | |
| 24 | void freeMessages() |
| 25 | { |
no outgoing calls
no test coverage detected