Ignore:
Timestamp:
Oct 27, 1999, 4:03:01 AM (26 years ago)
Author:
bird
Message:

Corrections to make win32k work.
(And now it does work, at least at my test machine...)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/misc/malloc.c

    r1271 r1467  
    1 /* $Id: malloc.c,v 1.2 1999-10-14 01:19:21 bird Exp $
     1/* $Id: malloc.c,v 1.3 1999-10-27 02:03:00 bird Exp $
    22 *
    33 * Heap.
     
    1010 */
    1111
    12 
     12#define static
    1313/******************************************************************************
    1414*  Defined macros and constants
     
    289289
    290290    #ifdef RING0
    291         pFree = D32Hlp_VMAlloc(VMDHA_SWAP | VMDHA_USEHIGHMEM, cbSize, ~0UL);
     291        pFree = D32Hlp_VMAlloc(VMDHA_SWAP, cbSize, ~0UL);
    292292    #else
    293293        if (DosAllocMem((void*)&pFree, cbSize, PAG_COMMIT | PAG_READ | PAG_WRITE) != 0)
Note: See TracChangeset for help on using the changeset viewer.