| 29 | |
| 30 | |
| 31 | void DebugDriverLog( const char *pMsgFormat, ... ) |
| 32 | { |
| 33 | #ifdef _DEBUG |
| 34 | va_list args; |
| 35 | va_start( args, pMsgFormat ); |
| 36 | |
| 37 | DriverLogVarArgs( pMsgFormat, args ); |
| 38 | |
| 39 | va_end( args ); |
| 40 | #endif |
| 41 | } |
nothing calls this directly
no test coverage detected