Diff for /Amaya/amaya/query.c between versions 1.148 and 1.149

version 1.148, 1998/09/24 08:13:22 version 1.149, 1998/09/24 14:27:08
Line 1766  static int          LoopForStop (AHTReqC Line 1766  static int          LoopForStop (AHTReqC
   old_active_window = GetActiveWindow ();    old_active_window = GetActiveWindow ();
   libwww_window = HTEventList_getWinHandle (&libwww_msg);    libwww_window = HTEventList_getWinHandle (&libwww_msg);
     
   while (GetMessage (&msg, NULL, 0, 0)    while (me->reqStatus != HT_END && me->reqStatus != HT_ERR
          && me->reqStatus != HT_END && me->reqStatus != HT_ERR               && me->reqStatus != HT_ABORT && AmayaIsAlive () &&
          && me->reqStatus != HT_ABORT && AmayaIsAlive ())               GetMessage (&msg, NULL, 0, 0))
     {                  {
       if (msg.message != WM_QUIT)           if (msg.message != WM_QUIT)
         {                          {
           TranslateMessage (&msg);                        TranslateMessage (&msg);
           DispatchMessage (&msg);                        DispatchMessage (&msg);
         }                          }
       else           else
         break;                  break;      
                         }
     }  
   if (!AmayaIsAlive ())    if (!AmayaIsAlive ())
     /* Amaya was killed by one of the callback handlers */      /* Amaya was killed by one of the callback handlers */
     exit (0);      exit (0);

Removed from v.1.148  
changed lines
  Added in v.1.149


Webmaster