Home  /  Autodocs  /  datatypes.library

NAME

LaunchToolA
invoke a given tool with project (V45)

SYNOPSIS

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, ... );

FUNCTION

This function launches an application with a specified project. The application and its launch mode and other attributes are specified through the "Tool" structure.

INPUTS

tool
Pointer to a Tool structure. NULL is a valid arg.

project
Name of the project to execute or NULL.

attrs
Additional attributes.

TAGS

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.

RESULT

FALSE for failure, non-zero for success.

EXAMPLE



NOTES

BUGS

SEE ALSO

FindToolNodeA