Intercept clipboard changes
how it is possible to gener开发者_Go百科ally intercept clipboard changes in C++? E.g. I would like to write a Windows Service that intercepts any Ctrl-C. Is it possible? How?
Thank you in advance.
James
What you need is a "windows clipboard hook". Google search on this term gives plenty of information, for example, this library on CodeProject, which seems to fit your requirements.
精彩评论