ISPP.dpr 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. Inno Setup Preprocessor
  3. Copyright (C) 2001-2002 Alex Yackimoff
  4. Inno Setup
  5. Copyright (C) 1997-2020 Jordan Russell
  6. Portions by Martijn Laan
  7. For conditions of distribution and use, see LICENSE.TXT.
  8. }
  9. library ISPP;
  10. {$IMAGEBASE $01800000}
  11. {$SETPEOSVERSION 6.0}
  12. {$SETPESUBSYSVERSION 6.0}
  13. {$WEAKLINKRTTI ON}
  14. {$I ..\Version.inc}
  15. uses
  16. SysUtils,
  17. Windows,
  18. Classes,
  19. CompPreprocInt in '..\CompPreprocInt.pas',
  20. IsppPreprocess in 'IsppPreprocess.pas',
  21. IsppPreprocessor in 'IsppPreprocessor.pas',
  22. IsppFuncs in 'IsppFuncs.pas',
  23. IsppVarUtils in 'IsppVarUtils.pas',
  24. IsppConsts in 'IsppConsts.pas',
  25. IsppStack in 'IsppStack.pas',
  26. IsppIntf in 'IsppIntf.pas',
  27. IsppParser in 'IsppParser.pas',
  28. IsppIdentMan in 'IsppIdentMan.pas',
  29. IsppSessions in 'IsppSessions.pas',
  30. CTokenizer in 'CTokenizer.pas',
  31. IsppBase in 'IsppBase.pas',
  32. PathFunc in '..\..\Components\PathFunc.pas',
  33. CmnFunc2 in '..\CmnFunc2.pas',
  34. FileClass in '..\FileClass.pas',
  35. Int64Em in '..\Int64Em.pas',
  36. MD5 in '..\MD5.pas',
  37. SHA1 in '..\SHA1.pas',
  38. Struct in '..\Struct.pas';
  39. {$R ISPP.version.res}
  40. exports
  41. ISPreprocessScript name 'ISPreprocessScriptW';
  42. end.