home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.amiga.programmer
- Path: sparky!uunet!mcsun!Germany.EU.net!ira.uka.de!rz.uni-karlsruhe.de!stepsun.uni-kl.de!sun.rhrk.uni-kl.de!apel
- From: apel@physik.uni-kl.de (Martin Apel (SAGA))
- Subject: Re: keyboard repeat
- Message-ID: <1992Sep7.104710.15143@rhrk.uni-kl.de>
- Sender: news@rhrk.uni-kl.de
- Organization: University of Kaiserslautern, Germany
- References: <19927.848.16364@dosgate>
- Distribution: comp
- Date: Mon, 7 Sep 1992 10:47:10 GMT
- Lines: 17
-
- jonathan.forbes@canrem.com ("jonathan forbes") writes:
- : I'm having a problem with processing VANILLAKEY/RAWKEY messages from a
- : window (non-Gadtools, so I'm using GetMsg() and ReplyMsg()).
- :
- : My input cycle is basically:
- :
- : loop...
- You have to do the following:
-
- loop...
- {
- Mask = Wait (InputSignal);
- while (GetMsg () != 0)
- {
- ProcessMsg ();
- }
- }
-