# WEM Description file for Starter Pack
# (c) Jaffa Software 1997

DEF WEMdetails
	Name		stpk
	Description	Starter Pack
	Author		(c) Jaffa Software 1997
	Version		1.00 (30-Aug-1997)
	Type		1
ENDWEM


DEF WEMevents
ENDWEM


DEF WEMcommands
	RGB		FN
		<red>, <green>, <blue>
		Returns the 24-bit colour equivalent of the
		colour specified.

		Each component is in the range 0-100,
		representing the percentage of that colour
		to include.
	ENDHELP
	LOADFILE	FN
		<filespec>
		Loads <filespec> into memory and returns the
		address of the start of it in memory.

		-1 is returned if there is not enough memory,
		and the memory can be deallocated using
		RELEASE.
	ENDHELP
	SAVEFILE	PROC
		<filespec>, <type>, <start>, <length>
		Saves the portion of memory from <start> to
		<start>+<length> (inclusive) to the file
		<filespec> and sets the filetype to <type>.

		Filetypes must be in the range &000-&FFF
	ENDHELP
	!Constants	PROC

		This WEM sets up several constants which can
		be accessed within your program:
		  For TASKINFO():
		    wwWimpVersion     wwTaskDirPtr
		    wwSpriteArea      wwIconbarHandle
		    wwTaskHandler     wwSlotSize
		    wwWimpBlock       wwPollwordPtr
		    wwHeapStart       wwHeapSize
		    wwInfoWindow      wwSaveWindow
		    wwErrorWindow
		  eg. TASKINFO(wwWimpVersion,wimpver%)

		  For REDEFINE():
		    wwFunction        wwProcedure

		  For general use:
		    wwSelect     wwMenu    wwAdjust
		    NULL (returned by CLAIM, ie. -1)
	ENDHELP
ENDWEM
