Process.mui

DESCRIPTION

Process.mui/Process.mui

MUIA_Process_AutoLaunch

(V20) [I..], ULONG, 0x80428855

DESCRIPTION

	If set to TRUE process loop is started right after object
	instance is created. Defaults to TRUE

EXAMPLES

	See supplied Process class example (Class4)

MUIA_Process_Name

(V20) [I..], ULONG, 0x8042732b

DESCRIPTION

	yet undocumented, please complain in mailinglist

MUIA_Process_Priority

(V20) [I..], ULONG, 0x80422a54

DESCRIPTION

	Specifies a priority for the process. Defaults to the same priority
	as the calling process and shouldn't be changed if not needed

EXAMPLES

	See supplied Process class example (Class4)

MUIA_Process_SourceClass

(V20) [I..], ULONG, 0x8042cf8b

DESCRIPTION

	To make it possible to 'embedd' process class instance into custom class
	this attribute should point to the container class. MUIM_Process_Process
	method will be called using class given with this attribute and an object
	specified with MUIA_Process_SourceObject

EXAMPLES

	See supplied Process class example (Class4)

SEE ALSO

MUIA_Process_SourceObject

(V20) [I..], ULONG, 0x804212a2

DESCRIPTION

	To make it possible to 'embedd' process class instance into custom class
	this attribute should point to the container object. MUIM_Process_Process
	method will be called using class given with MUIA_Process_SourceClass
	and an object specified with MUIA_Process_SourceObject

EXAMPLES

	See supplied Process class example (Class4)

SEE ALSO

MUIA_Process_StackSize

(V20) [I..], ULONG, 0x804230d0

DESCRIPTION

	yet undocumented, please complain in mailinglist

MUIA_Process_Task

(V20) [..G], ULONG, 0x8042b123

DESCRIPTION

	yet undocumented, please complain in mailinglist

MUIM_Process_Kill

MUIM_Process_Kill (V20) 0x804264cf

SYNOPSIS

	DoMethod(obj,MUIM_Process_Kill,LONG maxdelay);

DESCRIPTION

	Stops process' loop (MUIM_Process_Process). If the loop
	is not running does nothing

EXAMPLES

	See supplied Process class example (Class4)

MUIM_Process_Launch

MUIM_Process_Launch (V20) 0x80425df7

SYNOPSIS

	DoMethod(obj,MUIM_Process_Launch);

DESCRIPTION

	Starts process' loop (MUIM_Process_Process). If the loop
	is already running does nothing

EXAMPLES

	See supplied Process class example (Class4)

MUIM_Process_Process

MUIM_Process_Process (V20) 0x804230aa

SYNOPSIS

	DoMethod(obj,MUIM_Process_Process,ULONG *kill, Boopsiobject *proc);

DESCRIPTION

	Main process method. Terminating condition is passed in message struct.
	Proper implementation should wait for a signal to not use 100% cpu

EXAMPLES

	See supplied Process class example (Class4)

MUIM_Process_Signal

MUIM_Process_Signal (V20) 0x8042e791

SYNOPSIS

	DoMethod(obj,MUIM_Process_Signal,ULONG sigs);

DESCRIPTION

	yet undocumented, please complain in mailinglist