XlAccess.mesa
Copyright Ó 1988, 1991 by Xerox Corporation. All rights reserved.
Christian Jacobi, May 11, 1988 6:36:51 pm PDT
Christian Jacobi, October 9, 1992 0:47 am PDT
Despite the general appearance, this module is not really public.
It serves to isolate system dependent features from the system independent, portable parts of XlImpl.
DIRECTORY Rope;
XlAccess: CEDAR DEFINITIONS
~ BEGIN
DefaultServer: PROC [for: ATOM ¬ NIL] RETURNS [Rope.ROPE];
Get a string which encodes server and display
IsLocalHost: PROC [name: Rope.ROPE] RETURNS [BOOL];
Tests whether an X server as specified in name might be local.
AddressFromName: PROC [name: Rope.ROPE] RETURNS [address: Rope.ROPE];
May raise AddressFromNameFailed
AddressFromNameFailed: ERROR [msg: Rope.ROPE];
END.