SDL_FunctionPointer

A generic function pointer.

In theory, generic function pointers should use this, instead of void *, since some platforms could treat code addresses differently than data addresses. Although in current times no popular platforms make this distinction, it is more correct and portable to use the correct type for a generic pointer.

extern (C) nothrow @nogc
alias SDL_FunctionPointer = void function
()

Meta