Ignore:
Timestamp:
Jul 18, 1999, 7:12:52 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

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

    r321 r331  
    1 /* $Id: windowmsg.cpp,v 1.6 1999-07-17 11:52:24 sandervl Exp $ */
     1/* $Id: windowmsg.cpp,v 1.7 1999-07-18 17:12:03 sandervl Exp $ */
    22/*
    33 * Win32 window message APIs for OS/2
     
    414414  return (FALSE);
    415415}
    416 //******************************************************************************
    417 //******************************************************************************
     416/*****************************************************************************
     417 * Name      : long WIN32API BroadcastSystemMessage
     418 * Purpose   : The BroadcastSystemMessage function sends a message to the given
     419 *             recipients. The recipients can be applications, installable
     420 *             drivers, Windows-based network drivers, system-level device
     421 *             drivers, or any combination of these system components.
     422 * Parameters: DWORD   dwFlags,
     423               LPDWORD lpdwRecipients,
     424               UINT    uiMessage,
     425               WPARAM  wParam,
     426               LPARAM  lParam
     427 * Variables :
     428 * Result    : If the function succeeds, the return value is a positive value.
     429 *             If the function is unable to broadcast the message, the return value is -1.
     430 *             If the dwFlags parameter is BSF_QUERY and at least one recipient returned FALSE to the corresponding message, the return value is zero.
     431 * Remark    :
     432 * Status    : UNTESTED STUB
     433 *
     434 * Author    : Patrick Haller [Thu, 1998/02/26 11:55]
     435 *****************************************************************************/
     436
     437long WIN32API BroadcastSystemMessage(DWORD   dwFlags,
     438                                        LPDWORD lpdwRecipients,
     439                                        UINT    uiMessage,
     440                                        WPARAM  wParam,
     441                                        LPARAM  lParam)
     442{
     443  dprintf(("USER32:BroadcastSystemMessage(%08xh,%08xh,%08xh,%08xh,%08x) not implemented.\n",
     444        dwFlags,
     445        lpdwRecipients,
     446        uiMessage,
     447        wParam,
     448        lParam));
     449
     450  return (-1);
     451}
     452//******************************************************************************
     453//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.