Difference between revisions of "Lazarus/FPC Libraries"

From Lazarus wiki
Jump to navigationJump to search
 
Line 2: Line 2:
  
 
=Overview=
 
=Overview=
 +
 +
Related Topics:
 +
*[[Creating bindings for C libraries]] - How to convert C header files (.h) to pascal units
 +
 +
Dynamic libraries:
 +
{| BORDER="1" CELLSPACING="0"
 +
!COLSPAN="1" STYLE="background:#ffdead;"|'''Operating System'''
 +
!COLSPAN="1" STYLE="background:#ffdead;"|'''Dynamic library'''
 +
!COLSPAN="1" STYLE="background:#ffdead;"|'''Static library'''
 +
|FreeBSD||.so||.a
 +
|MacOSX||.dynlib||?
 +
|Linux||.so||.a
 +
|Windows||.dll||?
 +
|}

Revision as of 16:48, 19 January 2007

This page describes the possibilities how to create libraries with Lazarus/FPC and how to use them in projects and packages.

Overview

Related Topics:

Dynamic libraries:

Operating System Dynamic library Static library FreeBSD .so .a MacOSX .dynlib ? Linux .so .a Windows .dll ?