RosettaCodeData/Task/Call-a-function-in-a-shared-library/00DESCRIPTION

9 lines
502 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
Show how to call a function in a shared library (without dynamically linking to it at compile-time). In particular, show how to call the shared library function if the library is available, otherwise use an internal equivalent function.
This is a special case of [[Call foreign language function|calling a foreign language function]] where the focus is close to the ABI level and not at the normal API level.
2017-09-23 10:01:46 +02:00
;Related task:
2013-04-10 16:57:12 -07:00
* [[OpenGL]] -- OpenGL is usually maintained as a shared library.
2017-09-23 10:01:46 +02:00
<br><br>