success = LaunchToolA( tool, project, attrs );
d0 a0 a1 a2
ULONG LaunchToolA( struct Tool *, STRPTR, struct TagItem * );
success = LaunchTool( tool, project, tag1, ... );
ULONG LaunchTool( struct Tool *, STRPTR, ... );
This function launches an application with a specified project. The application and its launch mode and other attributes are specified through the "Tool" structure.
- NP_Priority (BYTE)
-
sets the priority of the launched tool Defaults to the current process's priority for Shell and ARexx programs; Workbench applications defaults to 0 except overridden by the TOOLPRI tooltype.
- NP_Synchronous (BOOL)
-
don't return until lauched application process finishes. Defaults to FALSE. Also see 'NOTE' below.
Other tags are __currently__ ignored.
FALSE for failure, non-zero for success.