Ignore:
Timestamp:
Feb 21, 2000, 5:45:47 AM (26 years ago)
Author:
bird
Message:

ProbKrnl and code for importing krnl symbols has been enhanched.
Now we'll lock 32-bit segments into memory too.
And some other fixes...

Location:
trunk/src/win32k/include
Files:
4 edited

Legend:

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

    r2832 r2836  
    1 /* $Id: dev16.h,v 1.6 2000-02-20 04:27:23 bird Exp $
     1/* $Id: dev16.h,v 1.7 2000-02-21 04:45:46 bird Exp $
    22 * dev16 - 16-bit specific. Should not be used in 32-bit C/C++.
    33 *
     
    105105USHORT NEAR dev1Init(PRPINITIN pRpIn, PRPINITOUT pRpOut);
    106106USHORT NEAR R0Init16(PRP_GENIOCTL pRp);
     107USHORT NEAR initGetDosTableData(void);
    107108
    108109
  • trunk/src/win32k/include/dev32.h

    r2832 r2836  
    1 /* $Id: dev32.h,v 1.6 2000-02-20 04:27:23 bird Exp $
     1/* $Id: dev32.h,v 1.7 2000-02-21 04:45:46 bird Exp $
    22 *
    33 * dev32 - header file for 32-bit part of the driver.
     
    8282 * variable into an function call; like the addToModule calls.
    8383 *
    84  * @returns    32-bit FLAT stack pointer.
     84 * Warning - At init-time you have ot make sure that the pulTKSSBase32 pointer is set!
     85 *
     86 * @returns    32-bit FLAT pointer.
    8587 */
    8688#ifdef RING0
  • trunk/src/win32k/include/devSegDf.inc

    r1678 r2836  
    1 ; $Id: devSegDf.inc,v 1.3 1999-11-10 01:45:32 bird Exp $
     1; $Id: devSegDf.inc,v 1.4 2000-02-21 04:45:46 bird Exp $
    22;
    33; Segment definitions for win32k.sys.
     
    2020DATA16_GROUP    group DATA16, DATA16_CONST, DATA16_BSS
    2121
     22
    2223CODE16 segment word public 'CODE' use16
    2324CODE16 ends
     25
    2426
    2527CODE32 segment dword public 'CODE' use32
    2628CODE32 ends
    2729
     30EH_CODE segment dword public 'CODE' use32
     31EH_CODE ends
     32
    2833CALLTAB segment dword public 'DATA' use32
    2934CALLTAB ends
    3035
    31 DGROUP group BSS32, DATA32
     36
     37;DGROUP group BSS32, DATA32
     38DGROUP group BSS32, DATA32, CONST32_RO, _VFT, EH_DATA, CALLTAB
    3239
    3340DATA32  segment dword public 'DATA' use32
     
    4047BSS32 ends
    4148
     49
     50;CONSTGROUP group CONST32_RO, _VFT, EH_DATA
     51
    4252CONST32_RO segment dword public 'CONST' use32
    4353CONST32_RO ends
    4454
     55_VFT segment dword public 'CONST' use32
     56_VFT ends
     57
     58EH_DATA segment byte public 'CONST' use32
     59EH_DATA ends
     60
  • trunk/src/win32k/include/options.h

    r2511 r2836  
    1 /* $Id: options.h,v 1.6 2000-01-24 18:18:59 bird Exp $
     1/* $Id: options.h,v 1.7 2000-02-21 04:45:47 bird Exp $
    22 *
    33 * Options.
     
    4444            o.usCom         = OUTPUT_COM2;          \
    4545            o.fLogging      = FALSE;                \
     46//            o.fLogging      = TRUE;                 \
    4647            o.fKernel       = KF_UNI;               \
    4748            o.ulBuild       = ~0UL;                 \
Note: See TracChangeset for help on using the changeset viewer.