Ignore:
Timestamp:
Oct 9, 2001, 7:18:05 AM (24 years ago)
Author:
phaller
Message:

enabled low-level keyboard hook

File:
1 edited

Legend:

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

    r6762 r6972  
    1 /* $Id: user32.cpp,v 1.115 2001-09-19 15:39:49 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.116 2001-10-09 05:18:02 phaller Exp $ */
    22
    33/*
     
    10791079
    10801080/*****************************************************************************
    1081  * Name      : BOOL WIN32API AnyPopup
    1082  * Purpose   : The AnyPopup function indicates whether an owned, visible,
    1083  *             top-level pop-up, or overlapped window exists on the screen. The
    1084  *             function searches the entire Windows screen, not just the calling
    1085  *             application's client area.
    1086  * Parameters: VOID
    1087  * Variables :
    1088  * Result    : If a pop-up window exists, the return value is TRUE even if the
    1089  *             pop-up window is completely covered by other windows. Otherwise,
    1090  *             it is FALSE.
    1091  * Remark    : AnyPopup is a Windows version 1.x function and is retained for
    1092  *             compatibility purposes. It is generally not useful.
    1093  * Status    : UNTESTED STUB
    1094  *
    1095  * Author    : Patrick Haller [Thu, 1998/02/26 11:55]
    1096  *****************************************************************************/
    1097 BOOL WIN32API AnyPopup(VOID)
    1098 {
    1099   dprintf(("USER32:AnyPopup() not implemented.\n"));
    1100 
    1101   return (FALSE);
    1102 }
    1103 
    1104 /*****************************************************************************
    11051081 * Name      : BOOL WIN32API PaintDesktop
    11061082 * Purpose   : The PaintDesktop function fills the clipping region in the
Note: See TracChangeset for help on using the changeset viewer.