| 841 | } |
| 842 | |
| 843 | void Beefy::OutputDebugStr(const StringImpl& theString) |
| 844 | { |
| 845 | const int maxLen = 0xFFFE; |
| 846 | if (theString.length() > maxLen) |
| 847 | { |
| 848 | OutputDebugStr(theString.Substring(0, maxLen)); |
| 849 | OutputDebugStr(theString.Substring(maxLen)); |
| 850 | return; |
| 851 | } |
| 852 | BfpOutput_DebugString(theString.c_str()); |
| 853 | } |
| 854 | |
| 855 | void Beefy::OutputDebugStrF(const char* fmt ...) |
| 856 | { |
nothing calls this directly
no test coverage detected