home *** CD-ROM | disk | FTP | other *** search
Delphi Package | 2004-01-02 | 1.6 KB | 60 lines |
- {-------------------------------------------------------------------------------
-
- DIIconv - libiconv character set conversion library for Borland Delphi.
-
- Copyright (c) 2003-2004 The Delphi Inspiration - Ralf Junker
- Internet: http://www.zeitungsjunge.de/delphi/
- E-Mail: delphi@zeitungsjunge.de
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public
- License along with this library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
- MA 02111-1307, USA.
-
- -------------------------------------------------------------------------------}
-
- package DIIconv_D5;
-
- {$R *.res}
- {$ALIGN ON}
- {$ASSERTIONS OFF}
- {$BOOLEVAL OFF}
- {$DEBUGINFO OFF}
- {$EXTENDEDSYNTAX ON}
- {$IMPORTEDDATA ON}
- {$IOCHECKS OFF}
- {$LOCALSYMBOLS OFF}
- {$LONGSTRINGS ON}
- {$OPENSTRINGS ON}
- {$OPTIMIZATION ON}
- {$OVERFLOWCHECKS OFF}
- {$RANGECHECKS OFF}
- {$REFERENCEINFO OFF}
- {$SAFEDIVIDE OFF}
- {$STACKFRAMES OFF}
- {$TYPEDADDRESS OFF}
- {$VARSTRINGCHECKS ON}
- {$WRITEABLECONST OFF}
- {$MINENUMSIZE 1}
- {$IMAGEBASE $400000}
- {$DESCRIPTION 'DIIconv'}
- {$RUNONLY}
- {$IMPLICITBUILD OFF}
-
- requires
- vcl50;
-
- contains
- DIIconv in 'DIIconv.pas';
-
- end.