home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / sys / amiga / programm / 13149 < prev    next >
Encoding:
Text File  |  1992-09-08  |  838 b   |  30 lines

  1. Newsgroups: comp.sys.amiga.programmer
  2. Path: sparky!uunet!mcsun!Germany.EU.net!ira.uka.de!rz.uni-karlsruhe.de!stepsun.uni-kl.de!sun.rhrk.uni-kl.de!apel
  3. From: apel@physik.uni-kl.de (Martin Apel (SAGA))
  4. Subject: Re: keyboard repeat
  5. Message-ID: <1992Sep7.104710.15143@rhrk.uni-kl.de>
  6. Sender: news@rhrk.uni-kl.de
  7. Organization: University of Kaiserslautern, Germany
  8. References: <19927.848.16364@dosgate>
  9. Distribution: comp
  10. Date: Mon, 7 Sep 1992 10:47:10 GMT
  11. Lines: 17
  12.  
  13. jonathan.forbes@canrem.com ("jonathan forbes") writes:
  14. : I'm having a problem with processing VANILLAKEY/RAWKEY messages from a
  15. : window (non-Gadtools, so I'm using GetMsg() and ReplyMsg()).
  16. : My input cycle is basically:
  17. : loop...
  18. You have to do the following:
  19.  
  20. loop...
  21.   {
  22.    Mask = Wait (InputSignal);
  23.    while (GetMsg () != 0)
  24.      {
  25.      ProcessMsg ();
  26.      }
  27.   }
  28.