home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 March / Chip_2004-03_cd1.bin / program / delphi / download / kompon / d234567 / DIIconv.exe / Source / DIIconv_D4.dpk < prev    next >
Encoding:
Delphi Package  |  2004-01-02  |  1.6 KB  |  60 lines

  1. {-------------------------------------------------------------------------------
  2.  
  3.  DIIconv - libiconv character set conversion library for Borland Delphi.
  4.  
  5.  Copyright (c) 2003-2004 The Delphi Inspiration - Ralf Junker
  6.  Internet: http://www.zeitungsjunge.de/delphi/
  7.  E-Mail:   delphi@zeitungsjunge.de
  8.  
  9.  This library is free software; you can redistribute it and/or
  10.  modify it under the terms of the GNU Library General Public
  11.  License as published by the Free Software Foundation; either
  12.  version 2 of the License, or (at your option) any later version.
  13.  
  14.  This library is distributed in the hope that it will be useful,
  15.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17.  Library General Public License for more details.
  18.  
  19.  You should have received a copy of the GNU Library General Public
  20.  License along with this library; if not, write to the Free
  21.  Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  22.  MA 02111-1307, USA.
  23.  
  24. -------------------------------------------------------------------------------}
  25.  
  26. package DIIconv_D4;
  27.  
  28. {$R *.res}
  29. {$ALIGN ON}
  30. {$ASSERTIONS OFF}
  31. {$BOOLEVAL OFF}
  32. {$DEBUGINFO OFF}
  33. {$EXTENDEDSYNTAX ON}
  34. {$IMPORTEDDATA ON}
  35. {$IOCHECKS OFF}
  36. {$LOCALSYMBOLS OFF}
  37. {$LONGSTRINGS ON}
  38. {$OPENSTRINGS ON}
  39. {$OPTIMIZATION ON}
  40. {$OVERFLOWCHECKS OFF}
  41. {$RANGECHECKS OFF}
  42. {$REFERENCEINFO OFF}
  43. {$SAFEDIVIDE OFF}
  44. {$STACKFRAMES OFF}
  45. {$TYPEDADDRESS OFF}
  46. {$VARSTRINGCHECKS ON}
  47. {$WRITEABLECONST OFF}
  48. {$MINENUMSIZE 1}
  49. {$IMAGEBASE $400000}
  50. {$DESCRIPTION 'DIIconv'}
  51. {$RUNONLY}
  52. {$IMPLICITBUILD OFF}
  53.  
  54. requires
  55.   vcl40;
  56.  
  57. contains
  58.   DIIconv in 'DIIconv.pas';
  59.  
  60. end.