FUNCTION_ENTRY_POINT

Return the pointer to the first instruction of a function given a function pointer. On IA-32 CPU architectures, these two pointer values are the same, so the implementation of this macro is very simple.

version(X86)
extern (C)
void*
FUNCTION_ENTRY_POINT
(
T
)
()
if (
is(T == function)
)

Return Value

Type: void*

The pointer to the first instruction of a function given a function pointer.

Meta