I needed this to provide my own way to access function tables which are dynamically created (e.g. via RtlAddFunctionTable).
I think I broke some "retrocompatibility" by adding the #pragma comment(lib, "dbghelp.lib") directive and be able to use SymFunctionTableAccess64 in the static myFunctionTableAccessFunction method. Not sure what would be a better way.
I needed this to provide my own way to access function tables which are dynamically created (e.g. via
RtlAddFunctionTable
). I think I broke some "retrocompatibility" by adding the#pragma comment(lib, "dbghelp.lib")
directive and be able to useSymFunctionTableAccess64
in the staticmyFunctionTableAccessFunction
method. Not sure what would be a better way.Let me know if it needs adjustments.