Changeset 2554 for trunk/src/kernel32/heap.cpp
- Timestamp:
- Jan 29, 2000, 11:42:38 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/heap.cpp
r2032 r2554 1 /* $Id: heap.cpp,v 1.1 7 1999-12-09 00:52:20sandervl Exp $ */1 /* $Id: heap.cpp,v 1.18 2000-01-29 10:42:38 sandervl Exp $ */ 2 2 3 3 /* … … 386 386 return O32_GlobalUnlock(arg1); 387 387 } 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 */ 396 LPVOID 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 */ 410 BOOL WIN32API GlobalUnWire(HGLOBAL hmem) 411 { 412 return GlobalUnlock( hmem); 413 } 414 //****************************************************************************** 415 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.