I’m writing a keylogger type application, and I have pretty much everything done, my problem is getting the window title, I don’t want to write the window title every time they press a key, I can get the window title, like I know how to, but how would I only write it to the log when its a new window?
I’m writing a keylogger type application, and I have pretty much everything done, my
Share
Store the previous window title and if the current window title is different than the previous window title, print the new window title and set the previous window title to the current window title.
This fails if there’s multiple windows with the same name, but it may work for your needs.