how to disable Ctrl + Alt + Del

hi all this is not an opengl question sorry.

i have noticed that when i go to full screen mode Ctrl + Alt + Del is disabled (nehe basecode) but how can i disable this in both win 9x and win 2k in windowed mode preferably with using the win32 API if possible (makes life easier).

Thanks all

I will do some research, but if I would guess it would be simply eat the event in your window proc

simple dont do it. it pisses me and a lot of users off. BTW i think its also impossible under windows2000 to disable it

this will not work in win2k but it may work int win 9x

int pOld;

SystemParametersInfo(SPI_SCREENSAVERRUNNING, False, &pOld, 0);

got it from a vb site

thanks alot guys for your help

Zee