Delphi - Ayuda con dll

 
Vista:

Ayuda con dll

Publicado por isaac (2 intervenciones) el 06/11/2004 15:54:47
el codigo de mi libreria es la siguiente y cuando compilo me manda un error que dice File no found Estructuras.RES alguien pudiera ayudarme lo agradeceria bastante el codigo fuente esta aqui abajo

library Estructuras;
uses
SysUtils,Dialogs,Classes;
{$R *.RES}
function MmaxVigaSimple(w, l :double):double; stdcall;
begin
MmaxVigaSimple:= w*sqr(l)/8;
end;
function MomentoVigaSimple (x, w, l :real):real;stdcall;
begin
MomentoVigaSimple:= w*x*(l-x)/2;
end;
procedure AcercaDe ();stdcall;
begin
ShowMessage('Módulo de Funciones de Estructuras:' +
#27 + //Nueva Línea
'Julio R. Baeza');
end;
exports
MmaxVigaSimple, MomentoVigaSimple, AcercaDe;
begin
end.

Muchas gracias de antemano
Isaac Vargas
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder