===========================================================================
| 161 | |
| 162 | //=========================================================================== |
| 163 | COLORREF DebuggerGetColor( int iColor ) |
| 164 | { |
| 165 | COLORREF nColor = RGB(0,255,255); // 0xFFFF00; // Hot Pink! -- so we notice errors. Not that there is anything wrong with pink... |
| 166 | |
| 167 | if ((g_iColorScheme < NUM_COLOR_SCHEMES) && (iColor < NUM_DEBUG_COLORS)) |
| 168 | { |
| 169 | nColor = g_aColors[ g_iColorScheme ][ iColor ]; |
| 170 | } |
| 171 | |
| 172 | return nColor; |
| 173 | } |
| 174 | |
| 175 | |
| 176 | bool DebuggerSetColor( const int iScheme, const int iColor, const COLORREF nColor ) |
no outgoing calls
no test coverage detected