Ignore:
Timestamp:
Sep 2, 2000, 10:49:29 PM (25 years ago)
Author:
bird
Message:

Bugfixing, DevSegDf.h,...

Location:
branches/GRACE/src/win32k/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GRACE/src/win32k/include/options.h

    r4107 r4162  
    1 /* $Id: options.h,v 1.10.4.3 2000-08-28 22:42:38 bird Exp $
     1/* $Id: options.h,v 1.10.4.4 2000-09-02 20:49:15 bird Exp $
    22 *
    33 * Options.
     
    5252            (unsigned short)~0,     /* usVerMajor    */     \
    5353            (unsigned short)~0,     /* usVerMinor    */     \
    54             FLAGS_PE_PE2LX,         /* fPE           */     \
     54            FLAGS_PE_MIXED,         /* fPE           */     \
    5555            INFOLEVEL_QUIET,        /* ulInfoLevel   */     \
    5656            FALSE,                  /* fElf          */     \
     
    131131#pragma pack()
    132132
    133 
    134133/*******************************************************************************
    135134*   Global Variables                                                           *
    136135*******************************************************************************/
    137 extern struct options options;      /* defined in d32globals.c */
     136extern struct options DATA16_GLOBAL options;    /* defined in d16globals.c */
    138137#if defined(__IBMC__) || defined(__IBMCPP__)
    139138    #pragma map( options , "_options"  )
  • branches/GRACE/src/win32k/include/probkrnl.h

    r4117 r4162  
    1 /* $Id: probkrnl.h,v 1.13.4.9 2000-08-30 04:11:30 bird Exp $
     1/* $Id: probkrnl.h,v 1.13.4.10 2000-09-02 20:49:15 bird Exp $
    22 *
    33 * Include file for ProbKrnl.
     
    9797*   NOTE! These are only available at init time!                               *
    9898*******************************************************************************/
    99 extern IMPORTKRNLSYM _aImportTab[NBR_OF_KRNLIMPORTS]; /* 'aImportTab' in PrbKrnl.c */
    100 extern KRNLDBENTRY   aKrnlSymDB[];      /* defined in symdb.c (for 16-bit usage) */
    101 extern KRNLDBENTRY   _aKrnlSymDB[];     /* defined in symdb.c (for 32-bit usage) */
     99extern IMPORTKRNLSYM DATA16_GLOBAL  aImportTab[NBR_OF_KRNLIMPORTS]; /* Defined in ProbKrnl.c */
     100extern char          DATA16_GLOBAL  szUsrSym[50];                   /* Defined in ProbKrnl.c */
     101extern KRNLDBENTRY   DATA16_INIT    aKrnlSymDB[];                   /* Defined in symdb.c (for 16-bit usage) */
     102
     103#if defined(__IBMC__) || defined(__IBMCPP__)
     104    #pragma map( aImportTab , "_aImportTab" )
     105    #pragma map( szUsrSym   , "_szUsrSym"   )
     106    #pragma map( aKrnlSymDB , "_aKrnlSymDB" )
     107#endif
    102108
    103109#if defined(INCL_16) && defined(MAX_DISKDD_CMD) /* 16-bit only */
    104110int ProbeKernel(PRPINITIN pReqPack);
     111
     112#if 0 /*ndef CODE16_INIT*/
     113#pragma alloc_text(CODE16_INIT, ProbeKernel)
    105114#endif
    106115
    107116#endif
    108117
     118#endif
     119
Note: See TracChangeset for help on using the changeset viewer.