Quote:
Originally Posted by Mlk27
I guess that should do it, thanks Snow. By the way, what's the diff return HAM_HANDLED vs HAM_SUPERCEDE?
|
Quote:
HAM_IGNORED - Nothing happened, the call continues.
HAM_HANDLED - You did something, but the call continues.
HAM_OVERRIDE - The call will still be executed, but instead you will change the return value.
HAM_SUPERCEDE - The call is not executed, and you use your return value, if applicable.
|
So supercede blocks it, handled just sends that something was done.