* * *

Author Topic: How to create a DLL withi Lazarus for Windows???  (Read 2409 times)

Uevertonbsb

  • Guest
How to create a DLL withi Lazarus for Windows???
« on: August 01, 2005, 03:18:49 pm »
Hello friends,

I'm trying to create a DLL using the Lazarus for Windows, but i did not find a way.

Exists some way?

Thanks

Phil H.

  • Guest
Re: How to create a DLL withi Lazarus for Windows???
« Reply #1 on: August 01, 2005, 04:18:45 pm »
Quote from: "Uevertonbsb"
Hello friends,

I'm trying to create a DLL using the Lazarus for Windows, but i did not find a way.

Exists some way?

Thanks


It's identical to creating a DLL in Delphi, for example:

library MyLib;

function MyFunction : LongBool; stdcall;
begin
end;

exports
  MyFunction;

end.

Anonymous

  • Guest
RE: Re: How to create a DLL withi Lazarus for Windows???
« Reply #2 on: August 16, 2005, 02:13:31 pm »
What i have to do if i want to create dll library??

 

Recent

Get Lazarus at SourceForge.net. Fast, secure and Free Open Source software downloads