<<>> <> <> <> <> <<>> DIRECTORY SunRPC USING [Handle]; SunRPCNumbers: CEDAR DEFINITIONS ~ { OPEN SunRPC; <> GetBool: PROC [h: Handle] RETURNS [BOOL]; PutBool: PROC [h: Handle, bool: BOOL]; GetInt64: PROC [h: Handle] RETURNS [INT64]; PutInt64: PROC [h: Handle, int64: INT64]; GetCard64: PROC [h: Handle] RETURNS [CARD64]; PutCard64: PROC [h: Handle, card64: CARD64]; GetReal: PROC [h: Handle] RETURNS [REAL]; PutReal: PROC [h: Handle, real: REAL]; GetDReal: PROC [h: Handle] RETURNS [DREAL]; PutDReal: PROC [h: Handle, dreal: DREAL]; }... <<>>