2.17.4. modu_GetStaticFunctionByName

[<<<] [>>>]

@c Get a function entry point from a statically linked library

Get the entry point of a function that was linked to the ScriptBasic environment statically.

This is the counterpart of the function dynlolib_GetFunctionByName for functions in library linked static. This function searches the SLFST table for the named function and returns the entry point or NULL if there is no functions with the given name defined.

void *modu_GetStaticFunctionByName(
  void *pLibrary,
  char *pszFunctionName
  ){

[<<<] [>>>]