Changeset 7441
- Timestamp:
- Nov 23, 2001, 7:08:03 PM (23 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/changelog ¶
r7437 r7441 1 /* $Id: changelog,v 1.1850 2001-11-23 04:19:10 bird Exp $ */ 1 /* $Id: changelog,v 1.1851 2001-11-23 18:04:44 phaller Exp $ */ 2 3 2001-11-23: Patrick Haller <patrick.haller@innotek.de> 4 - KERNEL32: o minor work in parallel port support (ioctls) 5 o "Kernel Object Namespace" -> handlenames.cpp introduced 6 (yet inactive) 2 7 3 8 2001-11-23: knut st. osmundsen <kosmunds@csc.com> -
TabularUnified trunk/include/ccollection.h ¶
r7414 r7441 1 /* $Id: ccollection.h,v 1. 8 2001-11-21 19:08:22phaller Exp $ */1 /* $Id: ccollection.h,v 1.9 2001-11-23 18:08:03 phaller Exp $ */ 2 2 3 3 /* … … 120 120 PLINEARLISTENTRY addAfter (PLINEARLISTENTRY pLLE, void *pObject); 121 121 void removeElement(PLINEARLISTENTRY pLLE); 122 int remove Element(void *pObject);122 int removeObject(void *pObject); 123 123 PLINEARLISTENTRY findForward(void *pObject); 124 124 PLINEARLISTENTRY findForward(PLINEARLISTENTRY pLLECurrent, -
TabularUnified trunk/include/win/winioctl.h ¶
r7434 r7441 467 467 468 468 469 typedef LARGE_INTEGER PHYSICAL_ADDRESS ;469 typedef LARGE_INTEGER PHYSICAL_ADDRESS, *PPHYSICAL_ADDRESS; 470 470 471 471 //Parallel Port IOCTLs -
TabularUnified trunk/src/kernel32/ccollection.cpp ¶
r7010 r7441 1 /* $Id: ccollection.cpp,v 1. 7 2001-10-11 00:59:43phaller Exp $ */1 /* $Id: ccollection.cpp,v 1.8 2001-11-23 18:07:37 phaller Exp $ */ 2 2 3 3 /* … … 560 560 561 561 562 int CLinearList::remove Element(void* pObject)562 int CLinearList::removeObject(void* pObject) 563 563 { 564 564 PLINEARLISTENTRY pLLE = findForward(pObject); -
TabularUnified trunk/src/kernel32/kernel32.mak ¶
r7298 r7441 1 # $Id: kernel32.mak,v 1.1 6 2001-11-08 14:49:27 phaller Exp $1 # $Id: kernel32.mak,v 1.17 2001-11-23 18:07:37 phaller Exp $ 2 2 3 3 # … … 65 65 $(OBJDIR)\initkernel32.obj \ 66 66 $(OBJDIR)\handlemanager.obj \ 67 $(OBJDIR)\handlenames.obj \ 67 68 $(OBJDIR)\environ.obj \ 68 69 $(OBJDIR)\initsystem.obj \
Note:
See TracChangeset
for help on using the changeset viewer.