C++
void * acrxGetServiceSymbolAddr( const ACHAR * serviceName, const ACHAR * symbol );
File
rxregsvc.h
Description
This function is a "C" code wrapper for:
acrxDynamicLinker->getSymbolAddress(serviceName, symbol);
which obtains the address of symbol and returns it as a void*. It's up to the application to then cast the void pointer to whatever it really is. If the service is not present or the symbol is not found, then NULL is returned.
Parameters
| Parameters | Description |
|---|---|
| serviceName | Input desired service name registered with the ObjectARX system |
| symbol | Input name of the exported symbol to get the address of |