0

I would like to know if i can load a shared library (.so) into my already running program. The library i'm loading as a plugin to modify things in my program, but i'd like to be able to load the plugin at any time while the program is running.

I've tried searching this but can't find the answer.

TheDiamondYT
  • 19
  • 1
  • 6

1 Answers1

0

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

OriBS
  • 624
  • 4
  • 9