Changeset 4227 for trunk/src/win32k/test


Ignore:
Timestamp:
Sep 8, 2000, 11:34:12 PM (25 years ago)
Author:
bird
Message:

Experimenting with ldrSetVMflags. Page alignment possible.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/test/fake.c

    r4164 r4227  
    1 /* $Id: fake.c,v 1.2 2000-09-02 21:08:20 bird Exp $
     1/* $Id: fake.c,v 1.3 2000-09-08 21:34:12 bird Exp $
    22 *
    33 * Fake stubs for the ldr and kernel functions we imports or overloads.
     
    313313
    314314    return NO_ERROR;
     315}
     316
     317
     318/**
     319 * Sets the VM flags for an executable object.
     320 * @returns     void
     321 * @param       pMTE        Pointer to the module table entry.
     322 * @param       flObj       LX Object flags.
     323 * @param       pflFlags1   Pointer to the flFlags1 of VMAllocMem (out).
     324 * @param       pflFlags2   Pointer to the flFlags2 of VMAllocMem (out).
     325 */
     326ULONG LDRCALL fakeldrSetVMflags(
     327    PMTE        pMTE,
     328    ULONG       flObj,
     329    PULONG      pflFlags1,
     330    PULONG      pflFlags2
     331    )
     332{
     333    *pflFlags1 = 0;
     334    *pflFlags2 = 0;
     335    flObj = flObj;
     336    pMTE = pMTE;
    315337}
    316338
Note: See TracChangeset for help on using the changeset viewer.