Ignore:
Timestamp:
Feb 20, 2001, 5:57:28 AM (25 years ago)
Author:
bird
Message:

Changed parameter struct to not return pv but hold ppv.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/lib/libDosAllocMemEx.c

    r5177 r5201  
    1 /* $Id: libDosAllocMemEx.c,v 1.6 2001-02-19 05:42:57 bird Exp $
     1/* $Id: libDosAllocMemEx.c,v 1.7 2001-02-20 04:57:28 bird Exp $
    22 *
    33 * DosAllocMemEx - Extened Edition of DosAllocMem.
     
    4444        ULONG         cbParam = sizeof(Param);
    4545        ULONG         cbData = 0UL;
    46         Param.pv = *ppv;
     46
     47        Param.ppv = ppv;
    4748        Param.cb = cb;
    4849        Param.flFlags = flag;
     
    5859        if (rc == NO_ERROR)
    5960        {
    60             *ppv = Param.pv;
    6161            rc = Param.rc;
    6262        }
Note: See TracChangeset for help on using the changeset viewer.