Ignore:
Timestamp:
Jun 26, 1999, 3:21:53 PM (26 years ago)
Author:
sandervl
Message:

Spy and window message changes

File:
1 edited

Legend:

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

    r196 r215  
    1 /* $Id: spy.cpp,v 1.1 1999-06-25 21:35:27 sandervl Exp $ */
     1/* $Id: spy.cpp,v 1.2 1999-06-26 13:21:12 sandervl Exp $ */
    22
    33/*
     
    7171}
    7272
    73 VOID PostSpyMessage(HWND hwnd, ULONG Msg, ULONG wParam, ULONG lParam)
     73BOOL PostSpyMessage(HWND hwnd, ULONG Msg, ULONG wParam, ULONG lParam)
    7474{
    7575 APIRET rc;
    7676
    7777   if (hqQueue == 0)
    78         return;
     78        return FALSE;
    7979   
    8080   pvdQMemory[msgIndex].hwnd   = hwnd;
     
    9191        hqQueue = 0; //give up, server probably died
    9292        dprintf(("PostSpyMessage: DosWriteQueue returned %d", rc));
    93         return;
     93        return FALSE;
    9494   }
    9595   if(++msgIndex >= MAX_MESSAGES)
     
    9797        msgIndex = 0;
    9898   }
     99   return TRUE;
    99100}
    100101
Note: See TracChangeset for help on using the changeset viewer.