My codebase (cpp) often calls separate dll functions with a precise schema:
A pointer to the function type is created.
A dll is loaded.
A Resolve function is called with the called function name i.e. Resolve("HandleMyGarbage") ant it populates the function pointer.
The function pointer is then called from now on.
dll is out of the scope/ like an API call / belonging to another project.
Is there a way this pattern can be memorized/injected in database as a node (with dll name and function name)?
My codebase (cpp) often calls separate dll functions with a precise schema:
A pointer to the function type is created.
A dll is loaded.
A Resolve function is called with the called function name i.e. Resolve("HandleMyGarbage") ant it populates the function pointer.
The function pointer is then called from now on.
dll is out of the scope/ like an API call / belonging to another project.
Is there a way this pattern can be memorized/injected in database as a node (with dll name and function name)?