- #1
- 150
- 0
I need to make a certain client program uncloseable(the best option). Or have it start itself every time someone closes it.
Any help?
Any help?
Your objective is a very bad idea.
I guess my opinion is that anyone capable of writing an operational hook isn't going to need to ask. It is simply a non trivial task to write one that doesn't blue screen you.A lot of this stuff is the stuff of rootkits. So most of first think very unkindly of this whole deal. I'm one of 'em.
I need to make a certain client program uncloseable(the best option). Or have it start itself every time someone closes it.
Any help?
switch (msg)
{
case WM_QUIT: return 0;
(...)
Look can you be a more clear!At least under Windows something like
Code:switch (msg) { case WM_QUIT: return 0; (...)
will disable close button. It doesn't mean program can't be closed, but it can become PITA :)