SymFromAddr function dbghelp

int SymFromAddr(
  1. int hProcess,
  2. int Address,
  3. Pointer<Uint64> Displacement,
  4. Pointer<SYMBOL_INFO> Symbol
)

Retrieves symbol information for the specified address.

BOOL SymFromAddrW(
  HANDLE        hProcess,
  DWORD64       Address,
  PDWORD64      Displacement,
  PSYMBOL_INFOW Symbol
);

Implementation

int SymFromAddr(int hProcess, int Address, Pointer<Uint64> Displacement,
        Pointer<SYMBOL_INFO> Symbol) =>
    _SymFromAddr(hProcess, Address, Displacement, Symbol);