' GWS dll  -  Feb 2008
' Sleep for 'n' millisecs.
export sleep

sub sleep(nmsec as int)
declare "kernel32",mysleep alias Sleep(nmsec as int),int

' routine to sleep for n mseconds 
mysleep(nmsec)

RETURN
ENDSUB