| 112 | |
| 113 | |
| 114 | DWORD WINAPI LogReaderProcessingThread(LPVOID param) { |
| 115 | const wchar_t* path = (wchar_t*)param; |
| 116 | LOG_A(LOG_INFO, "LOG: Start LogReaderProcessingThread: %ls", path); |
| 117 | tailFileW(path); |
| 118 | LOG_A(LOG_INFO, "LOG: Stopped LogReaderProcessingThread"); |
| 119 | return 0; |
| 120 | } |
| 121 | |
| 122 | |
| 123 | BOOL InitializeLogReader(std::vector<HANDLE>& threads) { |