Robotran C Documentation
Functions
mbs_load_libraries.h File Reference
#include "mbs_data.h"

Go to the source code of this file.

Functions

MbsDataLibInfombs_load_dynamic_library (char *libpath)
 Utility functions. More...
 
void mbs_close_dynamic_library (MbsDataLibInfo *li)
 Close the library pointed by MbsDataLibInfo and free the memory associated to the given MbsDataLibInfo. More...
 
FARPROC WINAPI mbs_load_function (MbsDataLibInfo *li, char *fct_name)
 mbs_load_function: dynamic loading of a function from a given library. More...
 
FARPROC WINAPI mbs_try_load_function (MbsDataLibInfo *li, char *fct_name)
 mbs_load_function: dynamic loading of a function from a given library. More...
 
int mbs_load_user_functions (MbsData *mbs_data, const char *user_path, const char *userfctLib_name)
 specific functions More...
 
int mbs_load_symbolic_functions (MbsData *mbs_data, const char *symbolic_path, const char *symbolicLib_name)
 Loads the symbolic functions from library into MbsData structure. More...
 
void mbs_close_libraries (MbsData *mbs_data)
 Close the symbolic and userfct libraries associated to the given MbsData. More...
 

Function Documentation

◆ mbs_close_dynamic_library()

void mbs_close_dynamic_library ( MbsDataLibInfo li)

Close the library pointed by MbsDataLibInfo and free the memory associated to the given MbsDataLibInfo.

Parameters
lithe structure to be freed.

◆ mbs_close_libraries()

void mbs_close_libraries ( MbsData mbs_data)

Close the symbolic and userfct libraries associated to the given MbsData.

Parameters
mbs_datathe project structure to be cleared from libraries.

◆ mbs_load_dynamic_library()

MbsDataLibInfo* mbs_load_dynamic_library ( char *  libpath)

Utility functions.

Utility functions.

Parameters
libpathlibrary path.
Returns
An allocated MbsDataLibInfo structure or NULL ptr in case of failure.

◆ mbs_load_function()

FARPROC WINAPI mbs_load_function ( MbsDataLibInfo li,
char *  fct_name 
)

mbs_load_function: dynamic loading of a function from a given library.

Produce an error message if the function does not exist

Parameters
lithe libray where to load the function
fct_namethe name of the function to load
Returns
the pointer to the loaded function

◆ mbs_load_symbolic_functions()

int mbs_load_symbolic_functions ( MbsData mbs_data,
const char *  symbolic_path,
const char *  symbolicLib_name 
)

Loads the symbolic functions from library into MbsData structure.

Parameters
mbs_datathe project structure to be filled.
symbolic_paththe directory of the library.
symbolicLib_namethe name of the library to load.
Returns
error status, < 0 in case of failure

◆ mbs_load_user_functions()

int mbs_load_user_functions ( MbsData mbs_data,
const char *  user_path,
const char *  userfctLib_name 
)

specific functions

Loads the user functions from library into MbsData structure.

Parameters
mbs_datathe project structure to be filled.
user_paththe directory of the library.
userfctLib_namethe name of the library to load.
Returns
error status, < 0 in case of failure

◆ mbs_try_load_function()

FARPROC WINAPI mbs_try_load_function ( MbsDataLibInfo li,
char *  fct_name 
)

mbs_load_function: dynamic loading of a function from a given library.

Return NULL if the function does not exist

Parameters
lithe libray where to load the function
fct_namethe name of the function to load
Returns
the pointer to the loaded function