Function
OLE-util-in-process-startup?() => in-process?
<boolean>.
Can be used when a server can be built as either an in-process (DLL) or a local (EXE) server. Rather than building the configuration information into the sources, you can use this function to determine at run-time which configuration is being used. Typically, you would avoid invoking your application's main routine in the in-process case:
unless (OLE-util-in-process-startup?()) main-program() end;