2.17.3. modu_GetModuleFunctionByName

[<<<] [>>>]

@c Get a function entry point from a module

This function gets the entrypoint of a module function. This module can either be statically or dynamically linked to ScriptBasic. This function is one level higher than @xref{GetStaticFunctionByName} or @xref{dynlolib_GetFunctionByName}. The first argument to this function is not the module handle as returned by @xref{dynlolib_LoadLibrary} but rather the pointer to the module description structure that holds other information on the modula. Namely the information that the module is loaded from dll or so, or if the module is linked to the interpreter static.

void *modu_GetModuleFunctionByName(
  pModule pThisModule,
  char *pszFunctionName
  ){

[<<<] [>>>]