I have an executable and a dynamic library (.so). The library exports some symbols and executable calls it successfully. But I want to make possible to library call executab
An easier way to achieve this is to have the executable register a function for later use by the library, the library stores a pointer to the function, and may call it at a later time.