Changeset 10587 for trunk/src/user32/gen_object.cpp
- Timestamp:
- Apr 20, 2004, 12:11:44 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/gen_object.cpp
r6375 r10587 1 /* $Id: gen_object.cpp,v 1.1 2 2001-07-20 15:34:16sandervl Exp $ */1 /* $Id: gen_object.cpp,v 1.13 2004-04-20 10:11:42 sandervl Exp $ */ 2 2 /* 3 3 * Generic Object Class for OS/2 4 4 * 5 5 * Allocated in shared memory, so other processes can access the objects 6 * 6 * 7 7 * NOTE: Requires safety precautions to use objects in multiple threads or processes 8 8 * … … 22 22 //****************************************************************************** 23 23 //****************************************************************************** 24 GenericObject::GenericObject(GenericObject **head, CRITICAL_SECTION*pLock)24 GenericObject::GenericObject(GenericObject **head, VMutex *pLock) 25 25 { 26 26 this->pLock = pLock; … … 28 28 this->next = NULL; 29 29 refCount = 1; 30 30 31 31 fLinked = FALSE; 32 32 fDeletePending = FALSE;
Note:
See TracChangeset
for help on using the changeset viewer.