The ddpi_space_unhide_module operation activates
the Ddpi_Module object in the given Ddpi_Process.
Description
The ddpi_space_unhide_module operation
also moves a module from the hidden-module list of a Ddpi_Space object
and puts it into a module list of a Ddpi_Process object.
Prototype
int ddpi_space_unhide_module(
Ddpi_Space space,
Ddpi_Process process,
Ddpi_Module module,
Ddpi_Error* error);
Parameters
- space
- Input. This accepts the Ddpi_Space object.
- process
- Input. This accepts the Ddpi_Process object.
- module
- Input. This accepts the Ddpi_Module object.
- error
- See The libddpi error parameter.
Return values
- DW_DLV_OK
- Returned when the module is successfully moved from the list of hidden
modules to the module list.
- DW_DLV_NO_ENTRY
- Returned if the module is not found in the list of hidden modules.
- DW_DLV_ERROR
- Returned if:
- space is NULL
- process is NULL
- module is NULL