Ignore:
Timestamp:
Jan 29, 2000, 11:42:38 AM (26 years ago)
Author:
sandervl
Message:

PD: Added GlobalWire/GlobalUnwire

File:
1 edited

Legend:

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

    r2032 r2554  
    1 /* $Id: heap.cpp,v 1.17 1999-12-09 00:52:20 sandervl Exp $ */
     1/* $Id: heap.cpp,v 1.18 2000-01-29 10:42:38 sandervl Exp $ */
    22
    33/*
     
    386386    return O32_GlobalUnlock(arg1);
    387387}
    388 //******************************************************************************
    389 //******************************************************************************
     388/***********************************************************************
     389 *           GlobalWire
     390 *
     391 * The GlobalWire function is obsolete. It is provided only for compatibility
     392 * with 16-bit versions of Windows. Applications that need to lock a global
     393 * memory object should use the GlobalLock and GlobalUnlock functions.
     394 *
     395 */
     396LPVOID WIN32API GlobalWire(HGLOBAL hmem)
     397{
     398   return GlobalLock( hmem );
     399}
     400
     401
     402/***********************************************************************
     403 *           GlobalUnWire
     404 *
     405 * The GlobalUnWire function is obsolete. It is provided only for compatibility
     406 * with 16-bit versions of Windows. Applications that need to lock a global
     407 * memory object should use the GlobalLock and GlobalUnlock functions.
     408 *
     409 */
     410BOOL WIN32API GlobalUnWire(HGLOBAL hmem)
     411{
     412   return GlobalUnlock( hmem);
     413}
     414//******************************************************************************
     415//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.