home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1996 May / CD2_DEMO.ISO / code / q&a / listing1.txt
Encoding:
Text File  |  1996-02-28  |  361 b   |  17 lines

  1. function ProcessMessage: Boolean;
  2. var
  3.     Msg: TMsg;
  4. begin
  5.     Result := False;
  6.     if PeekMessage(Msg, 0, 0, 0, PM_REMOVE) then
  7.     begin
  8.         Result := True;
  9.         if Msg.Message <> WM_QUIT then
  10.         begin
  11.             TranslateMessage(Msg);
  12.             DispatchMessage(Msg);
  13.         end
  14.         else PostQuitMessage (0);
  15.     end;
  16. end;
  17.