Árvore de páginas

Você está vendo a versão antiga da página. Ver a versão atual.

Comparar com o atual Ver Histórico da Página

« Anterior Versão 4 Próxima »

Função: ExecInDLLClose

Encerra a conexão com a DLL - Dynamic-link library (Biblioteca de ligação dinâmica).

ExecInDLLClose ( < nHandle> ) --> Nil

 

NomeTipoDescriçãoObrigatórioReferência
nHandleNuméricoIndica o handle da DLL obtida através da função ExecInDLLOpen().X 

 

Nil (Nulo)
//============================================================// DLL DE EXEMPLO EM DELPHI//============================================================
library TSTDLL;
uses Dialogs;
{$R *.RES}
function ExecInClientDLL(
aFuncID: Integer;
aParams: PChar;
aBuff: PChar;
aBuffSize: Integer ): integer;
stdcall;
begin

if aFuncID=1 then
begin // Roda opção 01
showmessage('Executando pela DLL - Texto via parametro: '+chr(13) + aParams);
result:=999;
end;
if aFuncID=2 then
begin // Roda opção 02
result:=-1;
end;
end;

exports ExecInClientDLL;
beginend.
//============================================================// ROTINA EM AdvPL PARA CHAMADA DA DLL//============================================================
// Abre

DllhHdl := ExecInDLLOpen( "TSTDLL.DLL" )
// ----------------------------------------------------------------
// Envia comando para execução, repare que estamos
// usando a opção "1" no momento de chamar a DLL.
// ----------------------------------------------------------------
// ExecInDllRun não retorna valor da DLL

buffer:= "Executando a partir da ExecInDllRun..."
xRet1 := ExecInDllRun( hHdl, 1, @buffer )
alert("Retorno da ExecInDllRun: " + xRet1)
// ExeDllRun2 retorna valor numérico da DLL
buffer:= "Executando a partir da ExeDllRun2..."
nRet2 := ExeDllRun2( hHdl, 1, @buffer )
 alert("Retorno da ExeDllRun2: " + StrZero(nRet2,3))
// ExeDllRun3 retorna valor numérico da DLL
buffer:= "Executando a partir da ExeDllRun3..."
nRet3 := ExeDllRun3( hHdl, 1, @buffer )
alert("Retorno da ExeDllRun3: " + StrZero(nRet3,3))
// ----------------------------------------------------------------
// Fecha a DLL
ExecInDllClose( hHdl )

 

  • Sem rótulos