home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / amiga / programm / 12289 < prev    next >
Encoding:
Text File  |  1992-08-13  |  950 b   |  28 lines

  1. Newsgroups: comp.sys.amiga.programmer
  2. Path: sparky!uunet!mcsun!news.funet.fi!ousrvr.oulu.fi!ousrvr!nix
  3. From: nix@zombie.oulu.fi (Tero Manninen)
  4. Subject: Re: console device raw mode
  5. In-Reply-To: ry41@rz.uni-karlsruhe.de's message of Thu, 13 Aug 1992 12:39:36 GMT
  6. Message-ID: <NIX.92Aug14014127@zombie.oulu.fi>
  7. Lines: 12
  8. Sender: news@ousrvr.oulu.fi
  9. Reply-To: nix@stekt.oulu.fi
  10. Organization: University of Oulu, Finland
  11. References: <DEREKN.92Aug12113036@vw.ece.cmu.edu>
  12.     <1992Aug13.123936.5658@rz.uni-karlsruhe.de>
  13. Distribution: comp
  14. Date: Thu, 13 Aug 1992 23:41:27 GMT
  15.  
  16.  
  17. On Thu, 13 Aug 1992 12:39:36 GMT,
  18. ry41@rz.uni-karlsruhe.de (Bernhard Moellemann) said:
  19.  
  20. Bernhard> Just call DoPkt(conport,ACTION_SCREEN_MODE,DOSTRUE) to enable RAW-mode and
  21. Bernhard> use DoPkt(...,DOSFALSE) to go back to cooked output.
  22.  
  23. There is even siplier way to do it:
  24. fh = Open("CON:....", ...);
  25. SetMode(fh, 1);   (1 is raw, 0 is cooked or normal line buffered mode).
  26.  
  27. ++Tero
  28.