Ignore:
Timestamp:
Sep 2, 2000, 11:08:23 PM (25 years ago)
Author:
bird
Message:

Merged in the Grace branch. New Win32k!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/k32/k32AllocMemEx.cpp

    r2823 r4164  
    1 /* $Id: k32AllocMemEx.cpp,v 1.2 2000-02-18 19:27:30 bird Exp $
     1/* $Id: k32AllocMemEx.cpp,v 1.3 2000-09-02 21:08:05 bird Exp $
    22 *
    33 * k32AllocMemEx - Equivalent to DosAllocMem, but this one
     
    1818#define INCL_OS2KRNL_VM
    1919
     20#define NO_WIN32K_LIB_FUNCTIONS
     21
    2022#ifndef OBJ_SELMAPALL
    2123#define OBJ_SELMAPALL   0x00000800UL
     
    2729*******************************************************************************/
    2830#include <os2.h>
     31#include "devSegDf.h"                   /* Win32k segment definitions. */
    2932#include "OS2Krnl.h"
     33#include "win32k.h"
    3034#include "k32.h"
    3135#include "options.h"
    3236#include "dev32.h"
    3337#include "log.h"
     38#include "macros.h"
    3439
    3540
     
    95100APIRET k32AllocMemEx(PPVOID ppv, ULONG cb, ULONG flag, ULONG ulCS, ULONG ulEIP)
    96101{
     102    #if 0
    97103    APIRET  rc;
    98104    ULONG   flFlags2;
     
    133139
    134140    return rc;
     141    #else
     142    NOREF(ppv);
     143    NOREF(cb);
     144    NOREF(flag);
     145    NOREF(ulCS);
     146    NOREF(ulEIP);
     147    return ERROR_NOT_SUPPORTED;
     148    #endif
    135149}
    136150
Note: See TracChangeset for help on using the changeset viewer.