NAME

cxModuleBaseNameGet - return the base name of the module.

C SPECIFICATION

#include <cx/Info.h>

const char *cxModuleBaseNameGet()

FUNCTION RETURN VALUE

cxModuleBaseNameGet returns the base name of the current module.

Fortran SPECIFICATION

subroutine cxModuleBaseNameGet( name )
character*(*) name

PARAMETERS

name
The returned base name of the module.

DESCRIPTION

cxModuleBaseNameGet returns a static character string that contains the base module's invocation name. For an individual module, the return value will be the same as that returned by cxModuleNameGet. The two functions differ when a module is part of a compiled group. In this case cxModuleNameGet will return the name of the compiled group and cxModuleBaseNameGet will return the name of the original individual module.

SEE ALSO

cxModuleNameGet

[ Documentation Home ]