maplecheck Expert Cheater
Reputation: 0
Joined: 22 Jan 2006 Posts: 139
|
Posted: Mon May 18, 2009 8:36 pm Post subject: About ProtectMe? |
|
|
function ProtectMe(ProtectedProcessID: dword; denylist,globaldenylist:BOOL;list:pchar; listsize:dword):BOOL; stdcall;
what mean denylist, globaldenylist, list and listsize?
eg. 2 process( a and b)
when I ProtectMe(a, true, true, nil, 0); then a is hide,
but now when I ProtectMe(b, true, true, nil, 0);
a is show, b is hide?? I want protect a and b, how to do?
|
|
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25785 Location: The netherlands
|
Posted: Tue May 19, 2009 5:42 am Post subject: |
|
|
not possible, it can only do one process at a time (edit the driver to add in support for more)
the list is just a pointer to a list of modulenames (each one 0-terminator seperated)
denylist indicates that the provided list is a list of modules to deny loading(if they load they get destroyed before the entry point is executed), otherwise the list is a list of modules that may only be loaded (e.g kernel32.dll)
the globaldenylist can be used together with denylist=true. This will make it that the denylist rule is applied to every process in the system, and not just the target process
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|