SunRPCNumbers.mesa
Copyright Ó 1990, 1991 by Xerox Corporation. All rights reserved.
Michael Plass, May 10, 1990 9:47 am PDT
Addenda to SunRPC for support of floating point, etc.
SunRPCNumbers:
CEDAR
DEFINITIONS
~ { OPEN SunRPC;
Serializing / Deserializing
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];
}...