W
wxj9527
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure DisableProcessWindowsGhosting;
var
_DisableProcessWindowsGhostingImp : procedure;
begin
//$ML-
@_DisableProcessWindowsGhostingImp := GetProcAddress(GetModuleHandle('user32.dll'), 'DisableProcessWindowsGhosting');
//$ML+
if @_DisableProcessWindowsGhostingImp <> nil then
begin
_DisableProcessWindowsGhostingImp;
end;
end;
var
_DisableProcessWindowsGhostingImp : procedure;
begin
//$ML-
@_DisableProcessWindowsGhostingImp := GetProcAddress(GetModuleHandle('user32.dll'), 'DisableProcessWindowsGhosting');
//$ML+
if @_DisableProcessWindowsGhostingImp <> nil then
begin
_DisableProcessWindowsGhostingImp;
end;
end;