Copyright (c) Hyperion Entertainment and contributors.

Difference between revisions of "Libraries"

From AmigaOS Documentation Wiki
Jump to navigation Jump to search
m
 
(24 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== AmigaDOS ==
+
== Introduction ==
  +
  +
A library is a set of related functions and data. For example, the AmigaOS's DOS library contains functions for accessing files and directories, and the Intuition library contains the graphical user interface functions.
  +
  +
There are three types of libraries: '''dynamically-loaded shared libraries''', '''dynamically linked libraries''', and '''static libraries'''. Shared libraries are shared by the running programs – only one copy of a library exists in the memory, no matter how many programs are using it. All AmigaOS's libraries are shared libraries. The shared library files can be recognized from the '''.library''' suffix.
  +
  +
A dynamically linked library is attached to a program during the load time, just before the program is executed. Linked library functions can't be shared by programs, and several copies of the library functions may exist in the memory. The linked library files can be recognized from the '''.so''' suffix.
  +
  +
A static library is like a linked library except it is attached permanently to a program when it is created. This makes it impossible for the user to update the library the program is using. Static libraries are supplied with programming languages.
  +
  +
== Shared Libraries ==
  +
=== AmigaDOS ===
   
 
[[AmigaDOS Introduction]]
 
[[AmigaDOS Introduction]]
Line 17: Line 28:
 
:[[Hard and Soft Links]]
 
:[[Hard and Soft Links]]
 
:[[Writing a UserShell]]
 
:[[Writing a UserShell]]
  +
:[[AmigaDOS Device Input and Output|Device Input and Output]]
   
  +
=== User Interface Libraries ===
[[AmigaDOS Device Input and Output]]
 
 
[[Advanced Information]]
 
 
== User Interface Libraries ==
 
   
 
[[Intuition Library]]
 
[[Intuition Library]]
Line 38: Line 46:
 
::[[String_Gadget_Type|String Gadget Type]]
 
::[[String_Gadget_Type|String Gadget Type]]
 
:[[Intuition Menus|Menus]]
 
:[[Intuition Menus|Menus]]
  +
::[[Intuition Classic Menus|Classic Menus]]
  +
::[[Intuition Menu Class|Menu Class]]
  +
::[[Intuition Context Menus|Context Menus]]
 
:[[Intuition Requesters|Requesters]]
 
:[[Intuition Requesters|Requesters]]
 
:[[Intuition Alerts|Alerts]]
 
:[[Intuition Alerts|Alerts]]
 
:[[Intuition Images, Line Drawing and Text|Images, Line Drawing and Text]]
 
:[[Intuition Images, Line Drawing and Text|Images, Line Drawing and Text]]
  +
::[[Intuition Images|Images]]
  +
::[[Intuition Borders|Borders]]
  +
::[[Intuition Text|Text]]
 
:[[Intuition Input and Output Methods|Input and Output Methods]]
 
:[[Intuition Input and Output Methods|Input and Output Methods]]
 
:[[Intuition Mouse|Mouse]]
 
:[[Intuition Mouse|Mouse]]
Line 54: Line 68:
   
 
[[Icon Library]]
 
[[Icon Library]]
  +
  +
[[Locale Library]]
   
 
[[GadTools Library]]
 
[[GadTools Library]]
Line 60: Line 76:
   
 
[[ASL Library]]
 
[[ASL Library]]
  +
:[[ASL File Requester|File Requester]]
  +
:[[ASL Font Requester|Font Requester]]
  +
:[[ASL Screen Mode Requester|Screen Mode Requester]]
   
 
[[Application Library]]
 
[[Application Library]]
  +
:[[PrefsObjects]]
   
 
[[Preferences]]
 
[[Preferences]]
   
== Graphics Libraries ==
+
=== Graphics Libraries ===
   
 
[[Graphics Library]]
 
[[Graphics Library]]
Line 71: Line 91:
 
:[[Graphics Primitives|Primitives]]
 
:[[Graphics Primitives|Primitives]]
 
::[[Classic Graphics Primitives|Classic Primitives]]
 
::[[Classic Graphics Primitives|Classic Primitives]]
:[[Graphics Sprites, Bobs and Animation|Sprites, Box and Animation]]
+
:[[Graphics Sprites, Bobs and Animation|Sprites, Bobs and Animation]]
 
::[[Hardware Sprites]]
 
::[[Hardware Sprites]]
 
::[[Virtual Sprites|Virtual Sprites (VSprites)]]
 
::[[Virtual Sprites|Virtual Sprites (VSprites)]]
Line 77: Line 97:
 
:[[Graphics Library and Text|Text]]
 
:[[Graphics Library and Text|Text]]
 
:[[Graphics Regions|Regions]]
 
:[[Graphics Regions|Regions]]
  +
:[[Graphics Composited Video|Composited Video]]
  +
:[[Graphics Video Overlay|Video Overlay]]
  +
:[[Graphics Minterms|Minterms]]
   
 
[[Layers Library]]
 
[[Layers Library]]
   
== Additional Libraries ==
+
=== Additional Libraries ===
   
 
[[AmigaGuide Library]]
 
[[AmigaGuide Library]]
Line 89: Line 112:
   
 
[[Datatypes Library]]
 
[[Datatypes Library]]
  +
:[[Writing Datatype Classes]]
   
 
[[IFFParse Library]]
 
[[IFFParse Library]]
Line 97: Line 121:
   
 
[[Newlib Library]]
 
[[Newlib Library]]
  +
  +
[[PThreads Library]]
   
 
[[RealTime Library]]
 
[[RealTime Library]]
Line 102: Line 128:
 
[[Translator Library]]
 
[[Translator Library]]
   
  +
[[DiskIO Library|Disk I/O Library]]
== Third-Party Libraries ==
 
  +
  +
=== 68k Libraries ===
  +
  +
[[Math Libraries]]
  +
  +
=== Third-Party Libraries ===
   
 
[[Expat Library]]
 
[[Expat Library]]
Line 108: Line 140:
 
[[Filesysbox Library]]
 
[[Filesysbox Library]]
   
== Appendices ==
+
== Linked Libraries ==
   
[[Linker Libraries]]
+
=== Audio Libraries ===
  +
libao
   
  +
libogg
== 68k Libraries ==
 
   
  +
libvorbis
[[Math Libraries]]
 
  +
  +
libvorbisenc
  +
  +
libvorbisfile
  +
  +
=== C/C++ Programming Language Libraries ===
  +
libc
  +
  +
libgcc
  +
  +
libgcov
  +
  +
libicudata
  +
  +
libicuuc
  +
  +
libstdc++
  +
  +
=== Compression Libraries ===
  +
libz
  +
  +
libbz2
  +
  +
=== Database Libraries ===
  +
libsqlite
  +
  +
=== Dynamic Linking Libraries ===
  +
libdl
  +
  +
=== File System Libraries ===
  +
libntfs
  +
  +
=== File Transfer Libraries ===
  +
libcurl
  +
  +
libssl
  +
  +
=== Graphics Libraries ===
  +
libcairo
  +
  +
libfontconfig
  +
  +
libfreetype
  +
  +
libjpeg
  +
  +
libpixman
  +
  +
libpng
  +
  +
libpng12
  +
  +
libSDL
  +
  +
libSDL_gfx
  +
  +
=== Parallel Execution Libraries ===
  +
libpthread
  +
  +
=== Python Programming Language Libraries ===
  +
libpython
  +
  +
=== XML Libraries ===
  +
libexpat
  +
  +
libxml
  +
  +
libxslt
  +
  +
== Static Libraries ==
  +
  +
[[Linker Libraries]]

Latest revision as of 15:24, 27 March 2019

Introduction

A library is a set of related functions and data. For example, the AmigaOS's DOS library contains functions for accessing files and directories, and the Intuition library contains the graphical user interface functions.

There are three types of libraries: dynamically-loaded shared libraries, dynamically linked libraries, and static libraries. Shared libraries are shared by the running programs – only one copy of a library exists in the memory, no matter how many programs are using it. All AmigaOS's libraries are shared libraries. The shared library files can be recognized from the .library suffix.

A dynamically linked library is attached to a program during the load time, just before the program is executed. Linked library functions can't be shared by programs, and several copies of the library functions may exist in the memory. The linked library files can be recognized from the .so suffix.

A static library is like a linked library except it is attached permanently to a program when it is created. This makes it impossible for the user to update the library the program is using. Static libraries are supplied with programming languages.

Shared Libraries

AmigaDOS

AmigaDOS Introduction

DOS Library

Data Structures
Program Startup
Basic Input and Output Programming
Executing External Programs
Cooperative Record Locking
Notification
Path Name Handling
Pattern Matching
Multiple Assigns
Packets
Vector-Port
Hard and Soft Links
Writing a UserShell
Device Input and Output

User Interface Libraries

Intuition Library

Screens
Custom Screen Type
Public Screen Type
Windows
Types
Structures and Functions
Communicating with Intuition
Display Preservation
Gadgets
Boolean Gadget Type
Proportional Gadget Type
String Gadget Type
Menus
Classic Menus
Menu Class
Context Menus
Requesters
Alerts
Images, Line Drawing and Text
Images
Borders
Text
Input and Output Methods
Mouse
Keyboard
Pointer
Special Functions
BOOPSI - Object Oriented Intuition
BOOPSI Gadgets
BOOPSI Images
BOOPSI Class Reference

Workbench Library

Icon Library

Locale Library

GadTools Library

GadTools Menus
GadTools Gadgets

ASL Library

File Requester
Font Requester
Screen Mode Requester

Application Library

PrefsObjects

Preferences

Graphics Libraries

Graphics Library

Display Database
Primitives
Classic Primitives
Sprites, Bobs and Animation
Hardware Sprites
Virtual Sprites (VSprites)
Blitter Objects (Bobs)
Text
Regions
Composited Video
Video Overlay
Minterms

Layers Library

Additional Libraries

AmigaGuide Library

Camd Library

Commodities Exchange Library

Datatypes Library

Writing Datatype Classes

IFFParse Library

Parsing IFF
Writing IFF

Keymap Library

Newlib Library

PThreads Library

RealTime Library

Translator Library

Disk I/O Library

68k Libraries

Math Libraries

Third-Party Libraries

Expat Library

Filesysbox Library

Linked Libraries

Audio Libraries

libao

libogg

libvorbis

libvorbisenc

libvorbisfile

C/C++ Programming Language Libraries

libc

libgcc

libgcov

libicudata

libicuuc

libstdc++

Compression Libraries

libz

libbz2

Database Libraries

libsqlite

Dynamic Linking Libraries

libdl

File System Libraries

libntfs

File Transfer Libraries

libcurl

libssl

Graphics Libraries

libcairo

libfontconfig

libfreetype

libjpeg

libpixman

libpng

libpng12

libSDL

libSDL_gfx

Parallel Execution Libraries

libpthread

Python Programming Language Libraries

libpython

XML Libraries

libexpat

libxml

libxslt

Static Libraries

Linker Libraries