The OpenD Programming Language

dylib

Dynamically linked shared libraries are identified by two things. The pathname (the name of the library as found for execution), and the compatibility version number. The pathname must match and the compatibility number in the user of the library must be greater than or equal to the library being used. The time stamp is used to record the time a library was built and copied into user so it can be use to determined if the library used at runtime is exactly the same as used to built the program.

Members

Variables

compatibility_version
uint compatibility_version;

Library's compatibility version number.

current_version
uint current_version;

Library's current version number.

name
lc_str name;

Library's path name.

timestamp
uint timestamp;

Library's build time stamp.

Meta