Ignore:
Timestamp:
Jun 8, 2002, 2:26:59 AM (23 years ago)
Author:
bird
Message:

Only apply the case workaround for 4.5.1+ toolkits.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/winimagepe2lx.cpp

    r7945 r8589  
    1 /* $Id: winimagepe2lx.cpp,v 1.19 2002-02-18 15:17:48 bird Exp $ */
     1/* $Id: winimagepe2lx.cpp,v 1.20 2002-06-08 00:26:59 bird Exp $ */
    22
    33/*
     
    1717#define INCL_DOSPROFILE         /* DosQuerySysState (Toolkit 4.5) */
    1818#define INCL_DOSMODULEMGR       /* DOS Module management */
     19#define INCL_DOSMISC            /* DOS Misc - for the LIBPATHSTRICT define */
    1920
    2021#define ALIGN(a, alignment) (((a) + (alignment - 1UL)) & ~(alignment - 1UL))
     
    122123
    123124#else
    124    #if defined(QS_MODVER) && defined(QS_DCE_AUTORESET) /* hope these didn't exists in the other toolkits */
     125   #if defined(QS_MODVER) && defined(QS_DCE_AUTORESET) && defined(LIBPATHSTRICT) /* hope these didn't exists in the other toolkits */
    125126      /*
    126        * Workaround for the 4.5(1) toolkits.
     127       * Workaround for the 4.5.1+ toolkits.
    127128       */
    128129      #define qsPtrRec_t   QSPTRREC
Note: See TracChangeset for help on using the changeset viewer.