123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- {$IFNDEF JEDIAPILIB_INC}
- {$DEFINE JEDIAPILIB_INC}
- {******************************************************************************}
- { }
- { Windows Version Unit for Object Pascal }
- { }
- { Portions created by Robert Marquardt are Copyright (C) 2004 }
- { Robert Marquardt. All Rights Reserved. }
- { }
- { Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI) }
- { }
- { You may retrieve the latest version of this file at the Project JEDI }
- { APILIB home page, located at http://jedi-apilib.sourceforge.net }
- { }
- { The contents of this file are used with permission, subject to the Mozilla }
- { Public License Version 1.1 (the "License"); you may not use this file except }
- { in compliance with the License. You may obtain a copy of the License at }
- { http://www.mozilla.org/MPL/MPL-1.1.html }
- { }
- { Software distributed under the License is distributed on an "AS IS" basis, }
- { WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
- { the specific language governing rights and limitations under the License. }
- { }
- { Alternatively, the contents of this file may be used under the terms of the }
- { GNU Lesser General Public License (the "LGPL License"), in which case the }
- { provisions of the LGPL License are applicable instead of those above. }
- { If you wish to allow use of your version of this file only under the terms }
- { of the LGPL License and not to allow others to use your version of this file }
- { under the MPL, indicate your decision by deleting the provisions above and }
- { replace them with the notice and other provisions required by the LGPL }
- { License. If you do not delete the provisions above, a recipient may use }
- { your version of this file under either the MPL or the LGPL License. }
- { }
- { For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
- { }
- {******************************************************************************}
- {$A+,Z4}
- // This file is intended for C header conversions.
- // It defines several mutually exclusive IFDEFs which determine
- // the Windows version the API conversion is usable with.
- {$I jedi.inc}
- {$IFNDEF JEDI_INC}
- ALERT_jedi_inc_incompatible
- // secure against old versions of jedi.inc.
- {$ENDIF !JEDI_INC}
- // activate standalone feature for files
- {$IFNDEF JWA_INCLUDEMODE}
- {$DEFINE JWA_INTERFACESECTION}
- {$DEFINE JWA_IMPLEMENTATIONSECTION}
- {$ENDIF !JWA_INCLUDEMODE}
- // Global switch to enable dynamic linking of some APIs
- {.DEFINE DYNAMIC_LINK}
- {$IFDEF DYNAMIC_LINK}
- {$STACKFRAMES ON}
- {$WARNINGS OFF}
- {$ENDIF DYNAMIC_LINK}
- // Global switch to make UNICODE versions of API functions default
- {.DEFINE UNICODE}
- // Global switch to activate the use of the original basic types of
- // Delphi Windows.pas. Either indirectly in JwaWinType.pas or
- // directly through the use of Windows.pas instead of JwaWinType.pas.
- {$DEFINE USE_DELPHI_TYPES}
- // Global switch for the Windows version the files are compatible with
- // ONLY A SINGLE ONE IS ALLOWED TO BE ACTIVATED BY CHANGING THE DOT TO A DOLLAR SIGN!
- // Default is WINXP
- {.DEFINE WIN95}
- {.DEFINE WIN98}
- {.DEFINE WIN98SE}
- {.DEFINE WIN98ME}
- {.DEFINE WINNT4}
- {.DEFINE WIN2000}
- {$DEFINE WINXP}
- {.DEFINE WIN2003}
- // Global switch for the Windows Internet Explorer versions
- // ONLY A SINGLE ONE IS ALLOWED TO BE ACTIVATED BY CHANGING THE DOT TO A DOLLAR SIGN!
- // Default is IE600
- {.DEFINE IE300}
- {.DEFINE IE400}
- {.DEFINE IE401}
- {.DEFINE IE500}
- {.DEFINE IE501}
- {.DEFINE IE560}
- {$DEFINE IE600}
- // Global switch for the MSI (Microsoft Installer) versions
- // ONLY A SINGLE ONE IS ALLOWED TO BE ACTIVATED BY CHANGING THE DOT TO A DOLLAR SIGN!
- // if none is set a default is determined from the Windows version IFDEFs
- {.DEFINE MSI100}
- {.DEFINE MSI110}
- {.DEFINE MSI200}
- // Global switch for the HtmlHelp versions
- // ONLY A SINGLE ONE IS ALLOWED TO BE ACTIVATED BY CHANGING THE DOT TO A DOLLAR SIGN!
- // default is HTMLHELP12
- {.DEFINE HTMLHELP11}
- {$DEFINE HTMLHELP12}
- // secondary IFDEFs for "_UP" which means also any later OS version
- {$IFDEF WIN2003}
- {$DEFINE WIN95_UP}
- {$DEFINE WIN98_UP}
- {$DEFINE WIN98SE_UP}
- {$DEFINE WIN98ME_UP}
- {$DEFINE WINNT4_UP}
- {$DEFINE WIN2000_UP}
- {$DEFINE WINXP_UP}
- {$DEFINE WIN2003_UP}
- {$ENDIF WIN2003}
- {$IFDEF WINXP}
- {$DEFINE WIN95_UP}
- {$DEFINE WIN98_UP}
- {$DEFINE WIN98SE_UP}
- {$DEFINE WIN98ME_UP}
- {$DEFINE WINNT4_UP}
- {$DEFINE WIN2000_UP}
- {$DEFINE WINXP_UP}
- {$ENDIF WINXP}
- {$IFDEF WIN2000}
- {$DEFINE WIN95_UP}
- {$DEFINE WIN98_UP}
- {$DEFINE WIN98SE_UP}
- {$DEFINE WIN98ME_UP}
- {$DEFINE WINNT4_UP}
- {$DEFINE WIN2000_UP}
- {$ENDIF WIN2000}
- {$IFDEF WINNT4}
- {$DEFINE WIN95_UP}
- {$DEFINE WIN98_UP}
- {$DEFINE WIN98SE_UP}
- {$DEFINE WIN98ME_UP}
- {$DEFINE WINNT4_UP}
- {$ENDIF WINNT4}
- {$IFDEF WIN98ME}
- {$DEFINE WIN95_UP}
- {$DEFINE WIN98_UP}
- {$DEFINE WIN98SE_UP}
- {$DEFINE WIN98ME_UP}
- {$ENDIF WIN98ME}
- {$IFDEF WIN98SE}
- {$DEFINE WIN95_UP}
- {$DEFINE WIN98_UP}
- {$DEFINE WIN98SE_UP}
- {$ENDIF WIN98SE}
- {$IFDEF WIN98}
- {$DEFINE WIN95_UP}
- {$DEFINE WIN98_UP}
- {$ENDIF WIN98}
- {$IFDEF WIN95}
- {$DEFINE WIN95_UP}
- {$ENDIF WIN95}
- // secondary IFDEFs for "_UP" which means also any later IE version
- {$IFDEF IE600}
- {$DEFINE IE300_UP}
- {$DEFINE IE400_UP}
- {$DEFINE IE401_UP}
- {$DEFINE IE500_UP}
- {$DEFINE IE501_UP}
- {$DEFINE IE560_UP}
- {$DEFINE IE600_UP}
- {$ENDIF IE600}
- {$IFDEF IE560}
- {$DEFINE IE300_UP}
- {$DEFINE IE400_UP}
- {$DEFINE IE401_UP}
- {$DEFINE IE500_UP}
- {$DEFINE IE501_UP}
- {$DEFINE IE560_UP}
- {$ENDIF IE560}
- {$IFDEF IE501}
- {$DEFINE IE300_UP}
- {$DEFINE IE400_UP}
- {$DEFINE IE401_UP}
- {$DEFINE IE500_UP}
- {$DEFINE IE501_UP}
- {$ENDIF IE501}
- {$IFDEF IE500}
- {$DEFINE IE300_UP}
- {$DEFINE IE400_UP}
- {$DEFINE IE401_UP}
- {$DEFINE IE500_UP}
- {$ENDIF IE500}
- {$IFDEF IE401}
- {$DEFINE IE300_UP}
- {$DEFINE IE400_UP}
- {$DEFINE IE401_UP}
- {$ENDIF IE401}
- {$IFDEF IE400}
- {$DEFINE IE300_UP}
- {$DEFINE IE400_UP}
- {$ENDIF IE400}
- {$IFDEF IE300}
- {$DEFINE IE300_UP}
- {$ENDIF IE300}
- // IFDEF defaults for MSI (Microsoft Installer)
- {$IFNDEF MSI200}
- {$IFNDEF MSI110}
- {$IFNDEF MSI100}
- {$IFDEF WINXP_UP}
- {$DEFINE MSI200}
- {$ELSE}
- {$IFDEF WIN2000_UP}
- {$DEFINE MSI110}
- {$ELSE}
- {$DEFINE MSI100}
- {$ENDIF WIN2000_UP}
- {$ENDIF WINXP_UP}
- {$ENDIF !MSI100}
- {$ENDIF !MSI110}
- {$ENDIF !MSI200}
- // secondary IFDEFs for MSI (Microsoft Installer)
- {$IFDEF MSI200}
- {$DEFINE MSI200_UP}
- {$DEFINE MSI110_UP}
- {$DEFINE MSI100_UP}
- {$ENDIF MSI200}
- {$IFDEF MSI110}
- {$DEFINE MSI110_UP}
- {$DEFINE MSI100_UP}
- {$ENDIF MSI110}
- {$IFDEF MSI100}
- {$DEFINE MSI100_UP}
- {$ENDIF MSI100}
- // secondary IFDEFs for HtmlHelp
- {$IFDEF HTMLHELP12}
- {$DEFINE HTMLHELP12_UP}
- {$DEFINE HTMLHELP11_UP}
- {$ENDIF HTMLHELP12}
- {$IFDEF HTMLHELP11}
- {$DEFINE HTMLHELP11_UP}
- {$ENDIF HTMLHELP11}
- {$ENDIF ~JEDIAPILIB_INC}
|