Changeset 2682 for trunk/src


Ignore:
Timestamp:
Feb 8, 2000, 1:38:39 PM (26 years ago)
Author:
bird
Message:

Disabled some uneeded imports which currenlty breaks WS4eB.

Location:
trunk/src/win32k
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/dev16/probkrnl.c

    r2589 r2682  
    1 /* $Id: probkrnl.c,v 1.7 2000-02-01 08:08:54 bird Exp $
     1/* $Id: probkrnl.c,v 1.8 2000-02-08 12:38:38 bird Exp $
    22 *
    33 * Description:   Autoprobes the os2krnl file and os2krnl[*].sym files.
     
    9595    {FALSE, -1,  9, "_ldrClose",            -1,  -1, EPT_PROC},        /* 2 */
    9696    {FALSE, -1, 12, "_LDRQAppType",         -1,  -1, EPT_PROC},        /* 3 */
    97     {FALSE, -1, 20, "_ldrEnum32bitRelRecs", -1,  -1, EPT_PROC},        /* 4 */
    98 
     97    {FALSE, -1, 20, "_ldrEnum32bitRelRecs", -1,  -1, EPT_PROC}         /* 4 */
     98#if 0 /* Currently problems with with WS4eB */
     99    ,
    99100    {FALSE, -1, 10, "_IOSftOpen",           -1,  -1, EPT_PROCIMPORT},  /* 5 */
    100101    {FALSE, -1, 11, "_IOSftClose",          -1,  -1, EPT_PROCIMPORT},  /* 6 */
     
    102103    {FALSE, -1, 12, "_IOSftReadAt",         -1,  -1, EPT_PROCIMPORT},  /* 8 */
    103104    {FALSE, -1, 13, "_IOSftWriteAt",        -1,  -1, EPT_PROCIMPORT}   /* 9 */
     105#endif
    104106};
    105107
  • trunk/src/win32k/dev32/d32init.c

    r2511 r2682  
    1 /* $Id: d32init.c,v 1.6 2000-01-24 18:18:59 bird Exp $
     1/* $Id: d32init.c,v 1.7 2000-02-08 12:38:38 bird Exp $
    22 *
    33 * d32init.c - 32-bits init routines.
     
    560560                        (unsigned)myldrClose,
    561561                        (unsigned)myLDRQAppType,
    562                         (unsigned)myldrEnum32bitRelRecs,
     562                        (unsigned)myldrEnum32bitRelRecs
     563                        #if 0 /* Currently problems with with WS4eB */
     564                        ,
    563565                        0,
    564566                        0,
    565567                        0,
    566568                        0,
    567                         0,
     569                        0
     570                        #endif
    568571                    };
    569572
  • trunk/src/win32k/include/probkrnl.h

    r2501 r2682  
    1 /* $Id: probkrnl.h,v 1.4 2000-01-22 18:21:01 bird Exp $
     1/* $Id: probkrnl.h,v 1.5 2000-02-08 12:38:39 bird Exp $
    22 *
    33 * Include file for ProbKrnl.
     
    1616*   Defined Constants And Macros                                               *
    1717*******************************************************************************/
    18 #define NUMBER_OF_PROCS      10
     18#define NUMBER_OF_PROCS       5
    1919#define MAX_LENGTH_NAME      32
    2020
  • trunk/src/win32k/ldr/calltab.asm

    r2501 r2682  
    1 ; $Id: calltab.asm,v 1.3 2000-01-22 18:21:01 bird Exp $
     1; $Id: calltab.asm,v 1.4 2000-02-08 12:38:39 bird Exp $
    22;
    33; callTab - Call back again table - table with entry for each function which is overrided.
     
    2424    public _LDRQAppType@8
    2525    public _ldrEnum32bitRelRecs@24
     26if 0    ; /* Currently problems with with WS4eB */
    2627    public _IOSftOpen@20
    2728    public _IOSftClose@4
     
    2930    public _IOSftReadAt@20
    3031    public _IOSftWriteAt@20
     32endif
    3133
    3234;
Note: See TracChangeset for help on using the changeset viewer.