Share

AcDbHostApplicationServices::loadApp

C++

virtual ACDBCORE2D_PORT bool loadApp(
    const ACHAR * appName, 
    AcadApp::LoadReasons why, 
    bool printit, 
    bool asCmd
);

Description

The default implementation of this method simply calls AcRxDynamicLinker::loadApp(). The arguments are equivalent and are passed unchanged.

This API is provided so that RealDWG developers can override loadApp() for their host application services implementation, and do anything special needed by their application.

Parameters

Parameters Description
appName Input null-terminated string which is the application name (as set in the system registry) of the ObjectARX module to load
why Input AcadApp::LoadReasons values to use during this load
printit Input Boolean indicating whether or not to print load status message
asCmd Input Boolean indicating whether to load the application as if by user command

Links

AcDbHostApplicationServices

Was this information helpful?