AddStampedLine Adds a new line to the control with a time stamp added to the beginning of the line. If logging is on and the addToLog param is TRUE then this line is also added to the log file. Params string - string to add addToLog - if TRUE then add to the file log, if it is enabled Return 0 - (UH_SUCCESS) 1 - (UH_ERROR) *************
| 1175 | 1 - (UH_ERROR) |
| 1176 | ***********************************/ |
| 1177 | int CUH_Control::AddStampedLine(LPCTSTR string, COLORREF TextColor, COLORREF BackColor, BOOLEAN addToLog){ |
| 1178 | return AddStampedLineT(string, TextColor, BackColor, addToLog, 0); |
| 1179 | } |
| 1180 | |
| 1181 | int CUH_Control::AddStampedLineT(LPCTSTR string, COLORREF TextColor, COLORREF BackColor, BOOLEAN addToLog, time_t time){ |
| 1182 |
nothing calls this directly
no outgoing calls
no test coverage detected