Ignore:
Timestamp:
Jun 27, 1999, 6:24:19 PM (26 years ago)
Author:
sandervl
Message:

Message handler updates & bugfixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/spy.cpp

    r215 r225  
    1 /* $Id: spy.cpp,v 1.2 1999-06-26 13:21:12 sandervl Exp $ */
     1/* $Id: spy.cpp,v 1.3 1999-06-27 16:23:23 sandervl Exp $ */
    22
    33/*
     
    6565void CloseSpyQueue()
    6666{
    67    if(hqQueue)
     67 APIRET rc;
     68
     69   dprintf(("CloseSpyQueue"));
     70   if(hqQueue) {
     71        if(pvdQMemory) {
     72                rc = DosWriteQueue(hqQueue, Q_SPYMSG_KILLSERVER, 0, 0, 0);
     73                if(rc) {
     74                        dprintf(("CloseSpyQueue: DosWriteQueue returned %d", rc));
     75                }
     76        }
    6877        DosCloseQueue(hqQueue);
     78   }
    6979   if(pvdQMemory)
    7080        DosFreeMem(pvdQMemory);
Note: See TracChangeset for help on using the changeset viewer.