Ignore:
Timestamp:
Feb 16, 2000, 12:39:20 AM (26 years ago)
Author:
bird
Message:

IOCtl exported services.
k32AllocMemEx.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/include/win32k.h

    r2796 r2799  
    1 /* $Id: win32k.h,v 1.1 2000-02-15 16:26:06 bird Exp $
     1/* $Id: win32k.h,v 1.2 2000-02-15 23:39:19 bird Exp $
    22 *
    33 * Top level make file for the Win32k library.
     
    2424 * K32 category - these are the functions found in the k32 directory.
    2525 */
    26 #define K32_DOSALLOCMEMEX       0x01
     26#define K32_ALLOCMEMEX          0x01
    2727
    2828
     
    3333
    3434
     35/*******************************************************************************
     36*   Structures and Typedefs                                                    *
     37*******************************************************************************/
     38/*
     39 * K32 category parameter structs
     40 */
     41typedef struct _k32AllocMemEx
     42{
     43    PVOID   pv;                         /* Pointer to allocated memory block */
     44                                        /* On input this holds the suggested */
     45                                        /* location of the block. */
     46    ULONG   cb;                         /* Blocksize (bytes) */
     47    ULONG   flFlags;                    /* Flags (equal to DosAllocMem flags) */
     48    ULONG   ulCS;                       /* Call CS */
     49    ULONG   ulEIP;                      /* Call EIP */
     50    ULONG   rc;                         /* Return code. */
     51} K32ALLOCMEMEX, *PK32ALLOCMEMEX;
     52
     53
     54
    3555
    3656#ifdef INCL_WIN32K_LIB
     
    3858*   External Functions                                                         *
    3959*******************************************************************************/
    40 APIRET APIENTRY  DosAllocMemEx(PPVOID ppb, ULONG cb, ULONG flag);
     60APIRET APIENTRY  DosAllocMemEx(PPVOID ppv, ULONG cb, ULONG flag);
    4161
    4262#endif
Note: See TracChangeset for help on using the changeset viewer.