MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / AddStampedLine

Method AddStampedLine

UTCP/src/uh_ctrl.cpp:1177–1179  ·  view source on GitHub ↗

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) *************

Source from the content-addressed store, hash-verified

1175 1 - (UH_ERROR)
1176***********************************/
1177int CUH_Control::AddStampedLine(LPCTSTR string, COLORREF TextColor, COLORREF BackColor, BOOLEAN addToLog){
1178 return AddStampedLineT(string, TextColor, BackColor, addToLog, 0);
1179}
1180
1181int CUH_Control::AddStampedLineT(LPCTSTR string, COLORREF TextColor, COLORREF BackColor, BOOLEAN addToLog, time_t time){
1182

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected