Changeset 7441


Ignore:
Timestamp:
Nov 23, 2001, 7:08:03 PM (23 years ago)
Author:
phaller
Message:

.

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)
    27
    38 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:22 phaller Exp $ */
     1/* $Id: ccollection.h,v 1.9 2001-11-23 18:08:03 phaller Exp $ */
    22
    33/*
     
    120120        PLINEARLISTENTRY addAfter  (PLINEARLISTENTRY pLLE, void *pObject);
    121121        void             removeElement(PLINEARLISTENTRY pLLE);
    122         int              removeElement(void *pObject);
     122        int              removeObject(void *pObject);
    123123        PLINEARLISTENTRY findForward(void *pObject);
    124124        PLINEARLISTENTRY findForward(PLINEARLISTENTRY pLLECurrent,
  • TabularUnified trunk/include/win/winioctl.h

    r7434 r7441  
    467467
    468468
    469 typedef LARGE_INTEGER PHYSICAL_ADDRESS;
     469typedef LARGE_INTEGER PHYSICAL_ADDRESS, *PPHYSICAL_ADDRESS;
    470470
    471471//Parallel Port IOCTLs
  • TabularUnified trunk/src/kernel32/ccollection.cpp

    r7010 r7441  
    1 /* $Id: ccollection.cpp,v 1.7 2001-10-11 00:59:43 phaller Exp $ */
     1/* $Id: ccollection.cpp,v 1.8 2001-11-23 18:07:37 phaller Exp $ */
    22
    33/*
     
    560560
    561561
    562 int CLinearList::removeElement(void* pObject)
     562int CLinearList::removeObject(void* pObject)
    563563{
    564564    PLINEARLISTENTRY pLLE = findForward(pObject);
  • TabularUnified trunk/src/kernel32/kernel32.mak

    r7298 r7441  
    1 # $Id: kernel32.mak,v 1.16 2001-11-08 14:49:27 phaller Exp $
     1# $Id: kernel32.mak,v 1.17 2001-11-23 18:07:37 phaller Exp $
    22
    33#
     
    6565$(OBJDIR)\initkernel32.obj \
    6666$(OBJDIR)\handlemanager.obj \
     67$(OBJDIR)\handlenames.obj \
    6768$(OBJDIR)\environ.obj \
    6869$(OBJDIR)\initsystem.obj \
Note: See TracChangeset for help on using the changeset viewer.