0

I'd like to know if it is possible to load a Linux shared library (extension being .so) into a program that is already running. T

he library that I'm wanting to load is a plugin to modify aspects of the program.

I'd like to load the plugin at any time while the program is running.

EDIT 10/22: This question is years old and I sincerely apologise for the sheer poor quality and utter stupidity of this question.

Luke
  • 39
  • 1
  • 8

1 Answers1

1

This is one of the core concepts of shared library. You should start by looking at dlopen functions and examples

OriBS
  • 722
  • 5
  • 9