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/include/LdrCalls.h

    r4164 r4227  
    1 /* $Id: LdrCalls.h,v 1.4 2000-09-02 21:08:02 bird Exp $
     1/* $Id: LdrCalls.h,v 1.5 2000-09-08 21:34:11 bird Exp $
    22 *
    33 * Prototypes for the loader overrided function.
     
    224224
    225225/**
     226 * Sets the VM flags for an executable object.
     227 * @returns     void
     228 * @param       pMTE        Pointer to the module table entry.
     229 * @param       flObj       LX Object flags.
     230 * @param       pflFlags1   Pointer to the flFlags1 of VMAllocMem (out).
     231 * @param       pflFlags2   Pointer to the flFlags2 of VMAllocMem (out).
     232 */
     233extern VOID LDRCALL  ldrSetVMflags( /* retd  0x10 */
     234    PMTE        pMTE,               /* ebp + 0x08 */
     235    ULONG       flObj,              /* ebp + 0x0c */
     236    PULONG      pflFlags1,          /* ebp + 0x10 */
     237    PULONG      pflFlags2           /* ebp + 0x14 */
     238    );
     239
     240VOID LDRCALL myldrSetVMflags(PMTE pMTE, ULONG flObj, PULONG pflFlags1, PULONG pflFlags2);
     241
     242
     243/**
    226244 * Pointer to the loader filename buffer.
    227245 * Upon return from ldrOpen (and ldrOpenPath which calls ldrOpen) this is
Note: See TracChangeset for help on using the changeset viewer.