Ignore:
Timestamp:
Apr 17, 2000, 3:56:50 AM (25 years ago)
Author:
bird
Message:

Added new function import.
Added some new modules.

File:
1 edited

Legend:

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

    r3321 r3411  
    1 /* $Id: probkrnl.c,v 1.19 2000-04-05 18:40:38 bird Exp $
     1/* $Id: probkrnl.c,v 1.20 2000-04-17 01:56:48 bird Exp $
    22 *
    33 * Description:   Autoprobes the os2krnl file and os2krnl[*].sym files.
     
    102102    {FALSE, -1, 11, "g_tkExecPgm",          -1,  -1,  -1,  -1, EPT_PROC32},        /* 13 */
    103103    {FALSE, -1, 11, "f_FuStrLenZ",          -1,  -1,  -1,  -1, EPT_PROCIMPORT16},  /* 14 */
    104     {FALSE, -1, 10, "f_FuStrLen",           -1,  -1,  -1,  -1, EPT_PROCIMPORT16},  /* 14 */
    105     {FALSE, -1,  8, "f_FuBuff",             -1,  -1,  -1,  -1, EPT_PROCIMPORT16}   /* 15 */
     104    {FALSE, -1, 10, "f_FuStrLen",           -1,  -1,  -1,  -1, EPT_PROCIMPORT16},  /* 15 */
     105    {FALSE, -1,  8, "f_FuBuff",             -1,  -1,  -1,  -1, EPT_PROCIMPORT16},  /* 16 */
     106    {FALSE, -1, 16, "_VMObjHandleInfo",     -1,  -1,  -1,  -1, EPT_PROCIMPORT}     /* 17 */
    106107/*    {FALSE, -1, 11, "",          -1,  -1, -1, EPT_PROCIMPORT16} */ /* 16 */
    107108};
     
    983984    int         i;
    984985    int         n;
    985     SEL         GDT;
    986     SEL         LDT;
    987     PGINFOSEG   pInfoSeg;
     986    SEL         selGIS;
     987    SEL         selLIS;
     988    PGINFOSEG   pGIS;
     989    PLINFOSEG   pLIS;
    988990    USHORT      usBootDrive;
    989991
     
    10351037    /* determin boot drive */
    10361038    /*---------------------*/
    1037     rc = DosGetInfoSeg(&GDT, &LDT);
     1039    rc = DosGetInfoSeg(&selGIS, &selLIS);
    10381040    if (rc != NO_ERROR)
    10391041        return rc;
    10401042
    1041     pInfoSeg  = MAKEPGINFOSEG(GDT);
    1042     usBootDrive = pInfoSeg->bootdrive;
    1043     usVerMajor  = pInfoSeg->uchMajorVersion;
    1044     usVerMinor  = pInfoSeg->uchMinorVersion;
     1043    pLIS = MAKEPLINFOSEG(selLIS);
     1044    pGIS = MAKEPGINFOSEG(selGIS);
     1045    usBootDrive = pGIS->bootdrive;
     1046    usVerMajor  = pGIS->uchMajorVersion;
     1047    usVerMinor  = pGIS->uchMinorVersion;
    10451048    dprintf(("BootDrive: %d\n", usBootDrive));
    10461049
     
    14951498        int         i;
    14961499
    1497         printf16("/* $Id: probkrnl.c,v 1.19 2000-04-05 18:40:38 bird Exp $\n"
     1500        printf16("/* $Id: probkrnl.c,v 1.20 2000-04-17 01:56:48 bird Exp $\n"
    14981501                 "*\n"
    14991502                 "* Autogenerated kernel symbol database.\n"
Note: See TracChangeset for help on using the changeset viewer.