dlfcn.h

    Description:

    Provides functions and structures related to linking and loading.

    This file provides functions and structures for opening and closing a dynamic-link library (DLL) and searching for the specified symbols based on the DLL.

    Since:

    1.0

    Version:

    1.0

    Function Name

    Description

    (void handle)

    int 

    Closes the DLL of a specified handle.

    dlerror (void)

    char  

    Obtains the latest error that occurred during a DLL function execution failure.

    (const char filename, int flags)

    void  

    Opens a DLL and returns its handle.

    dlsym (void handle, const char symbol)

    void * 

    Searches for a specified symbol based on the DLL handle.