Guardian Procedure Calls Reference Manual

Example
USER := 3 '<' 8 + 17; ! user ID 3,17.
USER[1] ':=' 0 & USER[1] FOR 6; ! all zeros.
USER[8] ':=' password FOR 8;
LOGON := 1; ! log this user on.
CALL VERIFYUSER ( USER , LOGON , DEFAULT , DEFAULT^LEN );
IF < THEN ... ! buffer or I/O error,
ELSE IF > THEN .. . ! no such user, or bad
! password.
ELSE ... ! successful. .
The array "USER" is prepared with the member and group ID and then passed to VERIFYUSER.
VERIFYUSER logs on the process with the member ID 17 and group ID 3.
VERIFYUSER Procedure (Superseded by USER_AUTHENTICATE_ Procedure and USER_GETINFO_ Procedure) 1485