Unix.Display.Mod 254 B

12345678910111213
  1. MODULE Display;
  2. IMPORT Commands;
  3. PROCEDURE Install*;
  4. VAR msg: ARRAY 256 OF CHAR; res: LONGINT;
  5. BEGIN
  6. Commands.Call("XDisplay.Install", {Commands.Wait}, res, msg);
  7. Commands.Call("KbdMouse.Init", {Commands.Wait}, res, msg);
  8. END Install;
  9. END Display.