PROCESS
*******
This module offers you basic process control

This module doesn't need to be initialized or uninitialized.

proc exit exitcode
==================
desc:	Exits your process
args:	exitcode	- return code
ret:	never returns
uses:	nothing
notes:	- choose lower values for exit codes, some system limit them to lesser
	values than dword

proc getcommandline
===================
desc:	Returns string handle containing command line of process
args:	none
ret:	CF=1 on error, otherwise
	EAX = string handle with command line
uses:	str.new - to create string
notes:	Don't forget to str.del-ete returned string!
