从内存中卸载DLL

I

import

Unregistered / Unconfirmed
GUEST, unregistred user!
remove a Dll from memory?
function KillDll(aDllName: string): Boolean;
var
hDLL: THandle;
aName: array[0..10] of char;
FoundDLL: Boolean;
begin
StrPCopy(aName, aDllName);
FoundDLL := False;
repeat
hDLL := GetModuleHandle(aName);
if hDLL = 0 then
Break;
FoundDLL := True;
FreeLibrary(hDLL);
until False;
if FoundDLL then
MessageDlg('Success!', mtInformation, [mbOK], 0)
else
MessageDlg('DLL not found!', mtInformation, [mbOK], 0);
end;
 

Similar threads

I
回复
0
查看
441
import
I
I
回复
0
查看
608
import
I
I
回复
0
查看
548
import
I
顶部