Delphi – stop the kernell32 event

delphidelphi-2009winapi

how can i stop or freeze the kernel32 event? for example stop the copy file??

Best Answer

You can't stop the kernel from copying files. If you want to stop the user from copying files, then you need to write a hook that implements the ICopyHook interface.

Related Topic