Dll : THandle = 0;
Dll := LoadLibrary(PChar(DLLName));
我这样怎么无法加载DLL啊?程序执行到LoadLibrary(PChar(DLLName));时就死了!!求救!!!!1
这个DLL是这样的
library Hq;{%File 'GetXDL.pas'}//{$DEFINE APACHE}
uses
  ISAPIApp,
  WebBroker,
  ISAPIMain in 'ISAPIMain.pas' {WebModule1: TWebModule},
  Tagprocess in 'Tagprocess.pas',
  BinData in 'BinData.pas',
  PubData in 'PubData.pas',
  TagBitmap in 'TagBitmap.pas';{$R *.RES}exports
{$IFDEF APACHE}
  apache_module name 'webhq_module';
// apache_module name 'moni_webhq_module';
{$ELSE}
  GetExtensionVersion,
  HttpExtensionProc,
  TerminateExtension;
{$ENDIF}begin
{$IFDEF APACHE}
  ContentType := 'webhq-handler';
  // ContentType := 'moni_webhq-handler';
{$ENDIF}
  Application.MaxConnections := 500;
  IsMultiThread := True;
  Application.Initialize;
  Application.CreateForm(TWebModule1, WebModule1);
  Application.Run;
end.