Page 1 of 1

Block Keys?

Posted: Wed Oct 09, 2013 1:21 am
by doidloko
hi how can i make a block keys in enigma protector? player press the key and process finish

i have it on c++ in my old source. how can i block keys insert and "/" in my .exe?

#define qtdKey 2
static DWORD checkForForbiddenKeys(LPVOID args)
{
const WORD fbKeys[qtdKey] = {
VK_INSERT,
VK_OEM_2,
};

for (;;) {
for (unsigned i = 0; i < qtdKey; i++) {
if (GetAsyncKeyState(fbKeys) & 0x8000)
ExitProcess(0);
}
Sleep(10);
}
}

void blockteclas(){
CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) checkForForbiddenKeys, NULL, 0, NULL);
}

Re: Block Keys?

Posted: Wed Oct 09, 2013 7:40 am
by Enigma
Hi doidloko,

You may implement such functionality in the plugins. Take a look at this folder "The Enigma Protector\EnigmaPluginsSDK\" there is an SDK for plugins, take necessary template and add the code to Enigma_Plugin_OnInit or Enigma_Plugin_OnFinal functions.