NPA_Check_For_Loaded_Module

Verifies that a specified module has been loaded.

Thread Context:Non-Blocking

Syntax

    LONG NPA_Check_For_Loaded_Module (
       BYTE *moduleName
    );
    
    

Parameters

moduleName
(IN) Points to a NULL-terminated string containing the name of the module for which the check is being made.

Return Values

The following table lists return values and descriptions.

zero

Module is not loaded

nonzero

Module is loaded

Remarks

This function is used to check if the specified module is loaded. Typically this function is used when loading a module that requires another module to be loaded first. Normally, these additional modules should be included in the link.def file instead of using this function.