Return address of next line to write to. ===========================================================================
| 8577 | // Return address of next line to write to. |
| 8578 | //=========================================================================== |
| 8579 | ProfileLine_t ProfileLinePeek ( int iLine ) |
| 8580 | { |
| 8581 | if (iLine < 0) |
| 8582 | iLine = 0; |
| 8583 | |
| 8584 | return ( g_nProfileLine == 0 || iLine <= g_nProfileLine ) |
| 8585 | ? ProfileLine_t( g_aProfileLine[ iLine ], sizeof(g_aProfileLine[iLine]) ) |
| 8586 | : ProfileLine_t(); |
| 8587 | } |
| 8588 | |
| 8589 | //=========================================================================== |
| 8590 | ProfileLine_t ProfileLinePush () |
no test coverage detected