UnimportSymbol

Eliminates dependency of an NLM on the specified external symbol

Local Servers:blocking
Remote Servers:N/A
Classification:3.12, 3.2, 4.x, 5.x, 6.x
Service:Advanced

Syntax

  #include <nwadv.h>  
   
  int UnimportSymbol  (  
     int    NLMHandle,   
     char  *symbolName); 
  

Parameters

NLMHandle

(IN) Specifies the handle of the NLM for which to unimport the symbol.

symbolName

(IN) Points to the symbol to unimport.

Return Values

This function returns 0 if successful. Otherwise, it returns an error code.

Remarks

UnimportSymbol reverses the effect of ImportSymbol, ending your the dependency of your NLM on the NLM that exports the symbol specified by symbolName. The NLMHandle parameter can be obtained by calling FindNLMHandle or GetNLMHandle.

See Also

ImportSymbol