talign1.pp 453 B

123456789101112131415161718192021222324
  1. { This verifies if the resource string table
  2. is correctly aligned, normally the assembler
  3. should be verified manually.
  4. }
  5. unit talign1;
  6. {$mode objfpc}
  7. interface
  8. resourcestring
  9. First = 'This is is a small test of a unit for resource strings';
  10. Second = 'This is also a small test';
  11. implementation
  12. end.
  13. {
  14. $Log$
  15. Revision 1.1 2002-10-21 21:12:13 carl
  16. * resource string table simple compilation test
  17. (align of table)
  18. }