procedure dlltest;
var
libhandle : THandle ;
begin
libhandle := LoadLibrary('test.dll');
Freelibrary(libhandle);
end;
程序报如下错:
raised too many consecutive exceptions :'
access violation at 0x00000000
read of address 0x00000000'
...全文
1238打赏收藏
如何释放动态连接库
procedure dlltest; var libhandle : THandle ; begin libhandle := LoadLibrary('test.dll'); Freelibrary(libhandle); end; 程序报如下错: raised too many consecutive exceptions :' access violation at 0x00000000 read of address 0x00000000'