0

The documentation for SymEnumSymbolsEx() reads:

SYMENUM_OPTIONS_DEFAULT 1     Use the default options.
SYMENUM_OPTIONS_INLINE 2      Enumerate inline symbols.

What are "inline symbols"? What do SymFromInlineContext and the other inline procedures do?

Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770
Jorge Rodriguez
  • 603
  • 1
  • 6
  • 14

1 Answers1

2

You should know about inline function: The function code is expanded at the point of the call at compile time which will save the overhead of a function call. So it doesn't look like a "real function call", Similar to macros function. However, different with macros function, it also has a symbol link.

Drake Wu
  • 6,927
  • 1
  • 7
  • 30