| 308 | |
| 309 | |
| 310 | static void IPLCALL WwiseLog(IPLLogLevel level, const char* message) |
| 311 | { |
| 312 | auto& globalState = GlobalState::Get(); |
| 313 | |
| 314 | AK::IAkGlobalPluginContext* globalPluginContext = globalState.globalPluginContext; |
| 315 | if (!globalPluginContext) |
| 316 | return; |
| 317 | |
| 318 | AK::Monitor::ErrorLevel errorLevel = (level == IPL_LOGLEVEL_ERROR) ? AK::Monitor::ErrorLevel_Error : AK::Monitor::ErrorLevel_Message; |
| 319 | globalPluginContext->PostMonitorMessage(message, errorLevel); |
| 320 | } |
| 321 | |
| 322 | |
| 323 | static void* IPLCALL WwiseAllocate(IPLsize size, IPLsize alignment) |
nothing calls this directly
no outgoing calls
no test coverage detected