| 633 | } |
| 634 | |
| 635 | BFP_EXPORT void BFP_CALLTYPE BfpSystem_AddCrashInfo(const char* str) // Can do at any time, or during CrashInfoFunc callbacks |
| 636 | { |
| 637 | AutoCrit autoCrit(BfpGetGlobalData()->mSysCritSect); |
| 638 | BfpGetGlobalData()->mCrashInfo.Append(str); |
| 639 | } |
| 640 | |
| 641 | BFP_EXPORT void BFP_CALLTYPE BfpSystem_SetCrashRelaunchCmd(const char* str) |
| 642 | { |
nothing calls this directly
no test coverage detected