Ignore:
Timestamp:
Jan 10, 2003, 1:57:14 PM (23 years ago)
Author:
sandervl
Message:

implemented Get/SetHandleInformation; CloseHandle change for HANDLE_FLAG_PROTECT_FROM_CLOSE; inheritance support added to DuplicateHandle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/hmdevice.cpp

    r8401 r9653  
    1 /* $Id: hmdevice.cpp,v 1.32 2002-05-10 14:55:11 sandervl Exp $ */
     1/* $Id: hmdevice.cpp,v 1.33 2003-01-10 12:57:12 sandervl Exp $ */
    22
    33/*
     
    200200{
    201201  dprintf(("KERNEL32:HandleManager::CloseHandle %s(%08x) - stub?\n",
     202           lpHMDeviceName,
     203           pHMHandleData));
     204
     205  SetLastError(ERROR_INVALID_FUNCTION);
     206  return FALSE;
     207}
     208
     209/*****************************************************************************
     210 * Name      : BOOL HMSetHandleInformation
     211 * Purpose   : The SetHandleInformation function sets certain properties of an
     212 *             object handle. The information is specified as a set of bit flags.
     213 * Parameters: HANDLE hObject  handle to an object
     214 *             DWORD  dwMask   specifies flags to change
     215 *             DWORD  dwFlags  specifies new values for flags
     216 * Variables :
     217 * Result    : TRUE / FALSE
     218 * Remark    :
     219 * Status    :
     220 *
     221 * Author    : SvL
     222 *****************************************************************************/
     223BOOL HMDeviceHandler::SetHandleInformation(PHMHANDLEDATA pHMHandleData,
     224                                           DWORD  dwMask,
     225                                           DWORD  dwFlags)
     226{
     227  dprintf(("KERNEL32:HandleManager::SetHandleInformation %s(%08x) - stub?\n",
    202228           lpHMDeviceName,
    203229           pHMHandleData));
Note: See TracChangeset for help on using the changeset viewer.