================ DebuggerServerPrint Sends a print message to the debugger client ================ */
| 244 | ================ |
| 245 | */ |
| 246 | void DebuggerServerPrint ( const char* text ) |
| 247 | { |
| 248 | if ( !gDebuggerServer ) |
| 249 | { |
| 250 | return; |
| 251 | } |
| 252 | |
| 253 | gDebuggerServer->Print ( text ); |
| 254 | } |