/components/compilers/c/lazcstrconsts.pas

http://github.com/graemeg/lazarus · Pascal · 45 lines · 8 code · 7 blank · 30 comment · 0 complexity · 1eff168deceb423411a8dd5f5a27db8b MD5 · raw file

  1. { Resourcestrings
  2. Copyright (C) 2008 Mattias Gaertner mattias@freepascal.org
  3. This library is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU Library General Public License as published by
  5. the Free Software Foundation; either version 2 of the License, or (at your
  6. option) any later version with the following modification:
  7. As a special exception, the copyright holders of this library give you
  8. permission to link this library with independent modules to produce an
  9. executable, regardless of the license terms of these independent modules,and
  10. to copy and distribute the resulting executable under terms of your choice,
  11. provided that you also meet, for each linked independent module, the terms
  12. and conditions of the license of that module. An independent module is a
  13. module which is not derived from or based on this library. If you modify
  14. this library, you may extend this exception to your version of the library,
  15. but you are not obligated to do so. If you do not wish to do so, delete this
  16. exception statement from your version.
  17. This program is distributed in the hope that it will be useful, but WITHOUT
  18. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  19. FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
  20. for more details.
  21. You should have received a copy of the GNU Library General Public License
  22. along with this library; if not, write to the Free Software Foundation,
  23. Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  24. }
  25. unit LazCStrConsts;
  26. {$mode objfpc}{$H+}
  27. interface
  28. uses
  29. Classes, SysUtils;
  30. resourcestring
  31. lcGNUProjectCAndCCompiler = 'GNU project C and C++ compiler';
  32. implementation
  33. end.