Ignore:
Timestamp:
Sep 22, 2000, 11:22:43 AM (25 years ago)
Author:
bird
Message:

Corrected problem with kernel build 14053. (new parameter to ldrOpenPath)
Added symbols for 14053 and 8266.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/dev32/d32init.c

    r4227 r4307  
    1 /* $Id: d32init.c,v 1.23 2000-09-08 21:34:10 bird Exp $
     1/* $Id: d32init.c,v 1.24 2000-09-22 09:22:35 bird Exp $
    22 *
    33 * d32init.c - 32-bits init routines.
     
    359359    /* functionoverrides */
    360360    if ((rc = importTabInit()) != NO_ERROR)
    361         return rc;
     361        return (USHORT)rc;
    362362
    363363    /*
     
    11971197        0,                              /* 18 */
    11981198        0,                              /* 19 */
    1199         (unsigned)myldrOpenPath,        /* 20 */
     1199        (unsigned)myldrOpenPath_old,    /* 20 */
    12001200        0,                              /* 21 */
    12011201        0,                              /* 22 */
     
    12201220        (unsigned)nopSecPathFromSFN     /* 41 */
    12211221        #if 0 /* experimenting */
    1222         ,(unsigned)myldrSetVMflags,      /* 42 */
     1222        ,(unsigned)myldrSetVMflags,     /* 42 */
    12231223        #endif
    12241224    };
     
    12261226    int cb;
    12271227    int cbmin;
     1228
     1229#ifndef R3TST //New function not currently not implemented by fake.c
     1230    /*
     1231     * Build specific changes to the auFuncs table
     1232     */
     1233    if (options.ulBuild >= 14053)
     1234    {
     1235        #ifdef DEBUG
     1236        if (auFuncs[20] != (unsigned)myldrOpenPath_old)
     1237        {
     1238            kprintf(("importTabInit: ASSERTION FAILED auFuncs don't point at myldrOpenPath\n"));
     1239            Int3();
     1240        }
     1241        #endif
     1242        auFuncs[20] = (unsigned)myldrOpenPath;
     1243    }
     1244#endif
    12281245
    12291246#ifdef R3TST
Note: See TracChangeset for help on using the changeset viewer.