/* Launch Multiview with S:Startup-Sequence as its parameter. */
OpenWorkbenchObject("MultiView",
WBOPENA_ArgLock, Lock("S:",SHARED_LOCK),
WBOPENA_ArgName, "Startup-Sequence",
TAG_DONE);
/* Launch the application "Paint" with the project files "Image1"
* and "Image2", which are both found in the drawer "Paint:Pictures".
*/
OpenWorkbenchObject("Paint",
WBOPENA_ArgLock, Lock("Paint:Pictures",SHARED_LOCK),
WBOPENA_ArgName, "Image1",
WBOPENA_ArgName, "Image2",
TAG_DONE);
/* Launch the application "Paint" with the project files "Image1"
* and "Anim1", which are both found in the drawers "Paint:Pictures"
* and "Paint:Animations", respectively.
*/
OpenWorkbenchObject("Paint",
WBOPENA_ArgLock, Lock("Paint:Pictures",SHARED_LOCK),
WBOPENA_ArgName, "Image1",
WBOPENA_ArgLock, Lock("Paint:Animations",SHARED_LOCK),
WBOPENA_ArgName, "Anim1",
TAG_DONE);